2
0
itizawa 4 жил өмнө
parent
commit
28b46c5fae

+ 13 - 0
packages/slackbot-proxy/src/controllers/privacy.ts

@@ -0,0 +1,13 @@
+import { Controller, Get } from '@tsed/common';
+
+const isOfficialMode = process.env.OFFICIAL_MODE === 'true';
+
+@Controller('/privacy')
+export class SlackCtrl {
+
+  @Get('/')
+  async install(): Promise<string> {
+    return 'Privary Policy';
+  }
+
+}