index.ts 549 B

1234567891011121314151617181920212223242526272829
  1. export const REQUEST_TIMEOUT_FOR_GTOP = 10000;
  2. export const REQUEST_TIMEOUT_FOR_PTOG = 10000;
  3. export const supportedSlackCommands: string[] = [
  4. '/growi',
  5. ];
  6. export const supportedGrowiCommands: string[] = [
  7. 'search',
  8. 'note',
  9. 'keep',
  10. 'help',
  11. ];
  12. export const defaultSupportedCommandsNameForBroadcastUse: string[] = [
  13. 'search',
  14. ];
  15. export const defaultSupportedCommandsNameForSingleUse: string[] = [
  16. 'note',
  17. 'keep',
  18. ];
  19. export const defaultSupportedSlackEventActions: string[] = [
  20. 'unfurl',
  21. ];
  22. export * from './required-scopes';