diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-02-02 18:11:58 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-02-02 18:11:58 +0900 |
| commit | 5a18d4bc80fc8c1600a72f6e4d1d3a55d990c18a (patch) | |
| tree | 389ef3a917a9667f245dbab0f771f86d989189cd /src/web/app/auth | |
| parent | [Server] Add 'hash' index to the drive_files collection (diff) | |
| download | misskey-5a18d4bc80fc8c1600a72f6e4d1d3a55d990c18a.tar.gz misskey-5a18d4bc80fc8c1600a72f6e4d1d3a55d990c18a.tar.bz2 misskey-5a18d4bc80fc8c1600a72f6e4d1d3a55d990c18a.zip | |
Refactoring
Diffstat (limited to 'src/web/app/auth')
| -rw-r--r-- | src/web/app/auth/script.js | 2 | ||||
| -rw-r--r-- | src/web/app/auth/tags.ls | 2 | ||||
| -rw-r--r-- | src/web/app/auth/tags/index.ls | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/web/app/auth/script.js b/src/web/app/auth/script.js index 9ada80ce68..efbf2c842e 100644 --- a/src/web/app/auth/script.js +++ b/src/web/app/auth/script.js @@ -4,7 +4,7 @@ const riot = require('riot'); document.title = 'Misskey | アプリの連携'; -require('./tags.ls'); +require('./tags/index.ls'); const boot = require('../boot.js'); /** diff --git a/src/web/app/auth/tags.ls b/src/web/app/auth/tags.ls deleted file mode 100644 index 5f618aaadf..0000000000 --- a/src/web/app/auth/tags.ls +++ /dev/null @@ -1,2 +0,0 @@ -require './tags/index.tag' -require './tags/form.tag' diff --git a/src/web/app/auth/tags/index.ls b/src/web/app/auth/tags/index.ls new file mode 100644 index 0000000000..66717ec53e --- /dev/null +++ b/src/web/app/auth/tags/index.ls @@ -0,0 +1,2 @@ +require './index.tag' +require './form.tag' |