aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/Api/Static/EmptyController.ts
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controllers/Http/Api/Static/EmptyController.ts')
-rw-r--r--app/Controllers/Http/Api/Static/EmptyController.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/Controllers/Http/Api/Static/EmptyController.ts b/app/Controllers/Http/Api/Static/EmptyController.ts
new file mode 100644
index 0000000..a07790e
--- /dev/null
+++ b/app/Controllers/Http/Api/Static/EmptyController.ts
@@ -0,0 +1,7 @@
1import type { HttpContextContract } from '@ioc:Adonis/Core/HttpContext';
2
3export default class EmptyController {
4 public async show({ response }: HttpContextContract) {
5 return response.send([]);
6 }
7}