aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/Api/Static/FeaturesController.ts
blob: d471b116e3c1a8ad5f10754268586c9444cb719b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import type { HttpContextContract } from '@ioc:Adonis/Core/HttpContext';

export default class FeaturesController {
  public async show({ response }: HttpContextContract) {
    return response.send({
      isServiceProxyEnabled: true,
      isWorkspaceEnabled: true,
      isAnnouncementsEnabled: true,
      isSettingsWSEnabled: false,
      isMagicBarEnabled: true,
      isTodosEnabled: true,
    });
  }
}