mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
16 lines
636 B
JavaScript
16 lines
636 B
JavaScript
// @flow
|
|
function insomniaDocs(slug: string): string {
|
|
return `https://support.insomnia.rest${slug}`;
|
|
}
|
|
|
|
export const docsBase = insomniaDocs('/');
|
|
export const docsGitSync = insomniaDocs('/article/96-git-sync');
|
|
export const docsGitAccessToken = {
|
|
github:
|
|
'https://docs.github.com/github/authenticating-to-github/creating-a-personal-access-token',
|
|
gitlab: 'https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html',
|
|
bitbucket: 'https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/',
|
|
bitbucketServer:
|
|
'https://confluence.atlassian.com/bitbucketserver/personal-access-tokens-939515499.html',
|
|
};
|