diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-04-02 04:15:27 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-04-02 04:15:27 +0900 |
| commit | cd2542e0fd8578f6e41114ffebbda1f16f7d04ce (patch) | |
| tree | c339b7808fc2a3d72ae30cb86ddb7b9c21852652 /src/client/app/common | |
| parent | Refactor (diff) | |
| download | sharkey-cd2542e0fd8578f6e41114ffebbda1f16f7d04ce.tar.gz sharkey-cd2542e0fd8578f6e41114ffebbda1f16f7d04ce.tar.bz2 sharkey-cd2542e0fd8578f6e41114ffebbda1f16f7d04ce.zip | |
Refactor
Diffstat (limited to 'src/client/app/common')
8 files changed, 9 insertions, 9 deletions
diff --git a/src/client/app/common/scripts/compose-notification.ts b/src/client/app/common/scripts/compose-notification.ts index 273579cbc6..56fbcb94fc 100644 --- a/src/client/app/common/scripts/compose-notification.ts +++ b/src/client/app/common/scripts/compose-notification.ts @@ -1,5 +1,5 @@ -import getPostSummary from '../../../../common/get-post-summary'; -import getReactionEmoji from '../../../../common/get-reaction-emoji'; +import getPostSummary from '../../../../misc/get-post-summary'; +import getReactionEmoji from '../../../../misc/get-reaction-emoji'; type Notification = { title: string; diff --git a/src/client/app/common/views/components/autocomplete.vue b/src/client/app/common/views/components/autocomplete.vue index 79bd2ba023..edba470581 100644 --- a/src/client/app/common/views/components/autocomplete.vue +++ b/src/client/app/common/views/components/autocomplete.vue @@ -21,7 +21,7 @@ import Vue from 'vue'; import * as emojilib from 'emojilib'; import contains from '../../../common/scripts/contains'; -import getAcct from '../../../../../common/user/get-acct'; +import getAcct from '../../../../../misc/user/get-acct'; const lib = Object.entries(emojilib.lib).filter((x: any) => { return x[1].category != 'flags'; diff --git a/src/client/app/common/views/components/messaging-room.message.vue b/src/client/app/common/views/components/messaging-room.message.vue index 91af26bffe..cad6825f38 100644 --- a/src/client/app/common/views/components/messaging-room.message.vue +++ b/src/client/app/common/views/components/messaging-room.message.vue @@ -34,7 +34,7 @@ <script lang="ts"> import Vue from 'vue'; -import getAcct from '../../../../../common/user/get-acct'; +import getAcct from '../../../../../misc/user/get-acct'; import parse from '../../../../../common/text/parse'; export default Vue.extend({ diff --git a/src/client/app/common/views/components/messaging.vue b/src/client/app/common/views/components/messaging.vue index 8317c3738a..f6709d02b4 100644 --- a/src/client/app/common/views/components/messaging.vue +++ b/src/client/app/common/views/components/messaging.vue @@ -51,7 +51,7 @@ <script lang="ts"> import Vue from 'vue'; -import getAcct from '../../../../../common/user/get-acct'; +import getAcct from '../../../../../misc/user/get-acct'; export default Vue.extend({ props: { diff --git a/src/client/app/common/views/components/othello.game.vue b/src/client/app/common/views/components/othello.game.vue index f08742ad10..aa5798d717 100644 --- a/src/client/app/common/views/components/othello.game.vue +++ b/src/client/app/common/views/components/othello.game.vue @@ -43,7 +43,7 @@ <script lang="ts"> import Vue from 'vue'; import * as CRC32 from 'crc-32'; -import Othello, { Color } from '../../../../../common/othello/core'; +import Othello, { Color } from '../../../../../misc/othello/core'; import { url } from '../../../config'; export default Vue.extend({ diff --git a/src/client/app/common/views/components/othello.room.vue b/src/client/app/common/views/components/othello.room.vue index a32be6b74f..eb1d3a0c6c 100644 --- a/src/client/app/common/views/components/othello.room.vue +++ b/src/client/app/common/views/components/othello.room.vue @@ -94,7 +94,7 @@ <script lang="ts"> import Vue from 'vue'; -import * as maps from '../../../../../common/othello/maps'; +import * as maps from '../../../../../misc/othello/maps'; export default Vue.extend({ props: ['game', 'connection'], diff --git a/src/client/app/common/views/components/post-html.ts b/src/client/app/common/views/components/post-html.ts index c5c3b72758..5670ce036a 100644 --- a/src/client/app/common/views/components/post-html.ts +++ b/src/client/app/common/views/components/post-html.ts @@ -1,7 +1,7 @@ import Vue from 'vue'; import * as emojilib from 'emojilib'; import parse from '../../../../../common/text/parse'; -import getAcct from '../../../../../common/user/get-acct'; +import getAcct from '../../../../../misc/user/get-acct'; import { url } from '../../../config'; import MkUrl from './url.vue'; diff --git a/src/client/app/common/views/components/welcome-timeline.vue b/src/client/app/common/views/components/welcome-timeline.vue index 09b090bdc1..036a77b1ce 100644 --- a/src/client/app/common/views/components/welcome-timeline.vue +++ b/src/client/app/common/views/components/welcome-timeline.vue @@ -24,7 +24,7 @@ <script lang="ts"> import Vue from 'vue'; -import getAcct from '../../../../../common/user/get-acct'; +import getAcct from '../../../../../misc/user/get-acct'; export default Vue.extend({ data() { |