summaryrefslogtreecommitdiff
path: root/src/client/app/config.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-07-07 21:17:29 +0900
committerGitHub <noreply@github.com>2018-07-07 21:17:29 +0900
commite85ac32c2d73fb5c5ff053fd6005df4d5d86bc7d (patch)
tree75beb7b8dc5c06b7f691ac2cc007e95998d1ae8d /src/client/app/config.ts
parent:v: (diff)
parentリポジトリとフィードバックのURLをconfigから指定できる... (diff)
downloadsharkey-e85ac32c2d73fb5c5ff053fd6005df4d5d86bc7d.tar.gz
sharkey-e85ac32c2d73fb5c5ff053fd6005df4d5d86bc7d.tar.bz2
sharkey-e85ac32c2d73fb5c5ff053fd6005df4d5d86bc7d.zip
Merge pull request #1859 from xps2/repurl
リポジトリとフィードバックのURLをconfigから指定できるように変更
Diffstat (limited to 'src/client/app/config.ts')
-rw-r--r--src/client/app/config.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/app/config.ts b/src/client/app/config.ts
index c6efe26cd5..ceee0a2d62 100644
--- a/src/client/app/config.ts
+++ b/src/client/app/config.ts
@@ -9,6 +9,8 @@ declare const _DOCS_URL_: string;
declare const _STATS_URL_: string;
declare const _STATUS_URL_: string;
declare const _DEV_URL_: string;
+declare const _REPOSITORY_URL_: string;
+declare const _FEEDBACK_URL_: string;
declare const _LANG_: string;
declare const _LANGS_: string;
declare const _RECAPTCHA_SITEKEY_: string;
@@ -32,6 +34,8 @@ export const docsUrl = _DOCS_URL_;
export const statsUrl = _STATS_URL_;
export const statusUrl = _STATUS_URL_;
export const devUrl = _DEV_URL_;
+export const repositoryUrl = _REPOSITORY_URL_;
+export const feedbackUrl = _FEEDBACK_URL_;
export const lang = _LANG_;
export const langs = _LANGS_;
export const recaptchaSitekey = _RECAPTCHA_SITEKEY_;