From eeb7251e297a2c38b0e1b99e3736efaa85cb5fea Mon Sep 17 00:00:00 2001 From: Vijay Aravamudhan Date: Sun, 14 Jan 2024 15:27:41 +0000 Subject: Upgrade node to the latest LTS (20.11.0) and pnpm to the latest (8.14.1) (#93) * Upgrade node to latest LTS (20.11.0) and pnpm to latest (8.14.1) * Upgrade node to latest LTS (20.11.0) and pnpm to latest (8.14.1) * Fix formatting --- app/Controllers/Http/ServiceController.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'app/Controllers/Http/ServiceController.ts') diff --git a/app/Controllers/Http/ServiceController.ts b/app/Controllers/Http/ServiceController.ts index 3ebc246..e58ce33 100644 --- a/app/Controllers/Http/ServiceController.ts +++ b/app/Controllers/Http/ServiceController.ts @@ -120,7 +120,12 @@ export default class ServiceController { return response.send(servicesArray); } - public async delete({ request, params, auth, response }: HttpContextContract) { + public async delete({ + request, + params, + auth, + response, + }: HttpContextContract) { // @ts-expect-error Property 'user' does not exist on type 'HttpContextContract'. const user = auth.user ?? request.user; -- cgit v1.2.3-54-g00ecf