mirror of
https://github.com/outline/outline.git
synced 2026-01-04 10:09:52 -06:00
* wip * Refactor, tasks, processors, routes loading * Move Slack settings config to plugin * Fix translations in plugins * Move Slack auth to plugin * test * Move other slack-related files into plugin * Forgot to save * refactor
8 lines
189 B
TypeScript
8 lines
189 B
TypeScript
export function signin(service = "slack"): string {
|
|
return `/auth/${service}`;
|
|
}
|
|
|
|
export function integrationSettingsPath(id: string): string {
|
|
return `/settings/integrations/${id}`;
|
|
}
|