diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-08-11 23:57:16 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-08-11 23:57:16 +0900 |
| commit | 5d9b5820afcd8525278f7e661a2519c76eedca5f (patch) | |
| tree | 22377f31dd737e6f70f2634ee2ec4af0b86a9253 /src/web/app/common/scripts | |
| parent | Log url when Misskey started (diff) | |
| download | sharkey-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.js | 4 |
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 }; |