summaryrefslogtreecommitdiff
path: root/src/himasaku
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-03-22 16:19:32 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-03-22 16:19:32 +0900
commitb646877e8bf73650859c52fc00a601da5b34bfc0 (patch)
tree347c7a8d7744b8da7d966fe0422dad6f38a8a610 /src/himasaku
parent[Client] Fix design (diff)
downloadsharkey-b646877e8bf73650859c52fc00a601da5b34bfc0.tar.gz
sharkey-b646877e8bf73650859c52fc00a601da5b34bfc0.tar.bz2
sharkey-b646877e8bf73650859c52fc00a601da5b34bfc0.zip
#309 and some cleanups
Diffstat (limited to 'src/himasaku')
-rw-r--r--src/himasaku/assets/himasaku.png (renamed from src/himasaku/resources/himasaku.png)bin144018 -> 144018 bytes
-rw-r--r--src/himasaku/assets/index.html (renamed from src/himasaku/resources/index.html)0
-rw-r--r--src/himasaku/server.ts4
3 files changed, 2 insertions, 2 deletions
diff --git a/src/himasaku/resources/himasaku.png b/src/himasaku/assets/himasaku.png
index 25cd91e954..25cd91e954 100644
--- a/src/himasaku/resources/himasaku.png
+++ b/src/himasaku/assets/himasaku.png
Binary files differ
diff --git a/src/himasaku/resources/index.html b/src/himasaku/assets/index.html
index f9e45d7a74..f9e45d7a74 100644
--- a/src/himasaku/resources/index.html
+++ b/src/himasaku/assets/index.html
diff --git a/src/himasaku/server.ts b/src/himasaku/server.ts
index e4fb0ef177..17edc66484 100644
--- a/src/himasaku/server.ts
+++ b/src/himasaku/server.ts
@@ -13,11 +13,11 @@ app.disable('x-powered-by');
app.locals.cache = true;
app.get('/himasaku.png', (req, res) => {
- res.sendFile(__dirname + '/resources/himasaku.png');
+ res.sendFile(__dirname + '/assets/himasaku.png');
});
app.get('*', (req, res) => {
- res.sendFile(__dirname + '/resources/index.html');
+ res.sendFile(__dirname + '/assets/index.html');
});
module.exports = app;