summaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/Api/Static/FeaturesController.ts
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controllers/Http/Api/Static/FeaturesController.ts')
-rw-r--r--app/Controllers/Http/Api/Static/FeaturesController.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controllers/Http/Api/Static/FeaturesController.ts b/app/Controllers/Http/Api/Static/FeaturesController.ts
index 9e14c10..ce964de 100644
--- a/app/Controllers/Http/Api/Static/FeaturesController.ts
+++ b/app/Controllers/Http/Api/Static/FeaturesController.ts
@@ -1,4 +1,4 @@
1import type { HttpContext } from '@adonisjs/core/http' 1import type { HttpContext } from '@adonisjs/core/http';
2 2
3export default class FeaturesController { 3export default class FeaturesController {
4 public async show({ response }: HttpContext) { 4 public async show({ response }: HttpContext) {
@@ -9,6 +9,6 @@ export default class FeaturesController {
9 isSettingsWSEnabled: false, 9 isSettingsWSEnabled: false,
10 isMagicBarEnabled: true, 10 isMagicBarEnabled: true,
11 isTodosEnabled: true, 11 isTodosEnabled: true,
12 }) 12 });
13 } 13 }
14} 14}