diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-09-14 20:33:27 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-09-14 20:33:27 +0900 |
| commit | f670345d450d2ac13448c56bc0aeb8dd5c3d84ef (patch) | |
| tree | f6c4455e54ae3c71ecc426c503d01182e617acb5 /src/client/app/mobile | |
| parent | 常にメディアを閲覧注意として投稿するオプションを実装 (diff) | |
| download | misskey-f670345d450d2ac13448c56bc0aeb8dd5c3d84ef.tar.gz misskey-f670345d450d2ac13448c56bc0aeb8dd5c3d84ef.tar.bz2 misskey-f670345d450d2ac13448c56bc0aeb8dd5c3d84ef.zip | |
ユーザー名のホストを省略しないオプションを実装
Diffstat (limited to 'src/client/app/mobile')
| -rw-r--r-- | src/client/app/mobile/views/pages/settings.vue | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/client/app/mobile/views/pages/settings.vue b/src/client/app/mobile/views/pages/settings.vue index c93b3a50f1..9b0e521a4f 100644 --- a/src/client/app/mobile/views/pages/settings.vue +++ b/src/client/app/mobile/views/pages/settings.vue @@ -14,6 +14,7 @@ <ui-switch v-model="darkmode">%i18n:@dark-mode%</ui-switch> <ui-switch v-model="circleIcons">%i18n:@circle-icons%</ui-switch> <ui-switch v-model="contrastedAcct">%i18n:@contrasted-acct%</ui-switch> + <ui-switch v-model="showFullAcct">%i18n:common.show-full-acct%</ui-switch> <ui-switch v-model="iLikeSushi">%i18n:common.i-like-sushi%</ui-switch> <ui-switch v-model="disableAnimatedMfm">%i18n:common.disable-animated-mfm%</ui-switch> <ui-switch v-model="alwaysShowNsfw">%i18n:common.always-show-nsfw% (%i18n:common.this-setting-is-this-device-only%)</ui-switch> @@ -232,6 +233,11 @@ export default Vue.extend({ set(value) { this.$store.dispatch('settings/set', { key: 'contrastedAcct', value }); } }, + showFullAcct: { + get() { return this.$store.state.settings.showFullAcct; }, + set(value) { this.$store.dispatch('settings/set', { key: 'showFullAcct', value }); } + }, + iLikeSushi: { get() { return this.$store.state.settings.iLikeSushi; }, set(value) { this.$store.dispatch('settings/set', { key: 'iLikeSushi', value }); } |