Compare commits
1 Commits
develop
...
skip-threa
Author | SHA1 | Date |
---|---|---|
Roman Kostetskii | 887999cefa |
|
@ -39,6 +39,7 @@ const UserSettings = {
|
||||||
newBio: unescape(this.$store.state.users.currentUser.description),
|
newBio: unescape(this.$store.state.users.currentUser.description),
|
||||||
newLocked: this.$store.state.users.currentUser.locked,
|
newLocked: this.$store.state.users.currentUser.locked,
|
||||||
newNoRichText: this.$store.state.users.currentUser.no_rich_text,
|
newNoRichText: this.$store.state.users.currentUser.no_rich_text,
|
||||||
|
newSkipThreadContainment: this.$store.state.users.currentUser.skip_thread_containment,
|
||||||
newDefaultScope: this.$store.state.users.currentUser.default_scope,
|
newDefaultScope: this.$store.state.users.currentUser.default_scope,
|
||||||
hideFollows: this.$store.state.users.currentUser.hide_follows,
|
hideFollows: this.$store.state.users.currentUser.hide_follows,
|
||||||
hideFollowers: this.$store.state.users.currentUser.hide_followers,
|
hideFollowers: this.$store.state.users.currentUser.hide_followers,
|
||||||
|
@ -140,6 +141,7 @@ const UserSettings = {
|
||||||
display_name: this.newName,
|
display_name: this.newName,
|
||||||
default_scope: this.newDefaultScope,
|
default_scope: this.newDefaultScope,
|
||||||
no_rich_text: this.newNoRichText,
|
no_rich_text: this.newNoRichText,
|
||||||
|
skip_thread_containment: this.newSkipThreadContainment,
|
||||||
hide_follows: this.hideFollows,
|
hide_follows: this.hideFollows,
|
||||||
hide_followers: this.hideFollowers,
|
hide_followers: this.hideFollowers,
|
||||||
show_role: this.showRole
|
show_role: this.showRole
|
||||||
|
|
|
@ -54,6 +54,10 @@
|
||||||
<input type="checkbox" v-model="newNoRichText" id="account-no-rich-text">
|
<input type="checkbox" v-model="newNoRichText" id="account-no-rich-text">
|
||||||
<label for="account-no-rich-text">{{$t('settings.no_rich_text_description')}}</label>
|
<label for="account-no-rich-text">{{$t('settings.no_rich_text_description')}}</label>
|
||||||
</p>
|
</p>
|
||||||
|
<p>
|
||||||
|
<input type="checkbox" v-model="newSkipThreadContainment" id="account-skip-thread-containment">
|
||||||
|
<label for="account-skip-Thread-Containment">{{$t('settings.skip_thread_containment_description')}}</label>
|
||||||
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<input type="checkbox" v-model="hideFollows" id="account-hide-follows">
|
<input type="checkbox" v-model="hideFollows" id="account-hide-follows">
|
||||||
<label for="account-hide-follows">{{$t('settings.hide_follows_description')}}</label>
|
<label for="account-hide-follows">{{$t('settings.hide_follows_description')}}</label>
|
||||||
|
|
|
@ -268,6 +268,7 @@
|
||||||
"notification_visibility_likes": "Likes",
|
"notification_visibility_likes": "Likes",
|
||||||
"notification_visibility_mentions": "Mentions",
|
"notification_visibility_mentions": "Mentions",
|
||||||
"notification_visibility_repeats": "Repeats",
|
"notification_visibility_repeats": "Repeats",
|
||||||
|
"skip_thread_containment_description": "Hide replies to inaccessible posts",
|
||||||
"no_rich_text_description": "Strip rich text formatting from all posts",
|
"no_rich_text_description": "Strip rich text formatting from all posts",
|
||||||
"no_blocks": "No blocks",
|
"no_blocks": "No blocks",
|
||||||
"no_mutes": "No mutes",
|
"no_mutes": "No mutes",
|
||||||
|
|
|
@ -174,6 +174,7 @@
|
||||||
"notification_visibility_likes": "Лайки",
|
"notification_visibility_likes": "Лайки",
|
||||||
"notification_visibility_mentions": "Упоминания",
|
"notification_visibility_mentions": "Упоминания",
|
||||||
"notification_visibility_repeats": "Повторы",
|
"notification_visibility_repeats": "Повторы",
|
||||||
|
"skip_thread_containment_description": "Прятать ответы к недоступным постам",
|
||||||
"no_rich_text_description": "Убрать форматирование из всех постов",
|
"no_rich_text_description": "Убрать форматирование из всех постов",
|
||||||
"hide_follows_description": "Не показывать кого я читаю",
|
"hide_follows_description": "Не показывать кого я читаю",
|
||||||
"hide_followers_description": "Не показывать кто читает меня",
|
"hide_followers_description": "Не показывать кто читает меня",
|
||||||
|
|
|
@ -90,6 +90,7 @@ export const parseUser = (data) => {
|
||||||
if (data.source.pleroma) {
|
if (data.source.pleroma) {
|
||||||
output.no_rich_text = data.source.pleroma.no_rich_text
|
output.no_rich_text = data.source.pleroma.no_rich_text
|
||||||
output.show_role = data.source.pleroma.show_role
|
output.show_role = data.source.pleroma.show_role
|
||||||
|
output.skip_thread_containment = data.source.skip_thread_containment
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue