aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/Api/Static/FeaturesController.ts
blob: 9e14c1031cfa8b16507495718866ce4815e81d24 (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,
    })
  }
}