aboutsummaryrefslogtreecommitdiff
path: root/server/src/routes/content-api/index.ts
blob: 5c96dcf94e7653b6c9065d1f1812125ea9602420 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export default () => ({
  type: 'content-api',
  routes: [
    {
      method: 'GET',
      path: '/',
      // name of the controller file & the method.
      handler: 'controller.index',
      config: {
        policies: [],
      },
    },
  ],
});