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

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