index.ts 534 B

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