summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-08-11 23:57:16 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-08-11 23:57:16 +0900
commit5d9b5820afcd8525278f7e661a2519c76eedca5f (patch)
tree22377f31dd737e6f70f2634ee2ec4af0b86a9253 /src/web/app/common/scripts
parentLog url when Misskey started (diff)
downloadsharkey-5d9b5820afcd8525278f7e661a2519c76eedca5f.tar.gz
sharkey-5d9b5820afcd8525278f7e661a2519c76eedca5f.tar.bz2
sharkey-5d9b5820afcd8525278f7e661a2519c76eedca5f.zip
status実装
とりあえずCPU使用率だけ
Diffstat (limited to 'src/web/app/common/scripts')
-rw-r--r--src/web/app/common/scripts/config.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/web/app/common/scripts/config.js b/src/web/app/common/scripts/config.js
index 16f75d6e16..d108b834bb 100644
--- a/src/web/app/common/scripts/config.js
+++ b/src/web/app/common/scripts/config.js
@@ -8,6 +8,7 @@ const url = `${scheme}//${host}`;
const apiUrl = `${scheme}//api.${host}`;
const devUrl = `${scheme}//dev.${host}`;
const aboutUrl = `${scheme}//about.${host}`;
+const statusUrl = `${scheme}//status.${host}`;
export default {
host,
@@ -15,5 +16,6 @@ export default {
url,
apiUrl,
devUrl,
- aboutUrl
+ aboutUrl,
+ statusUrl
};