Skip to content
Snippets Groups Projects
Commit 049e2397 authored by Hakaba Hitoyo's avatar Hakaba Hitoyo
Browse files

update

parent 07ef43c7
No related branches found
No related tags found
No related merge requests found
const FeaturesPanel = {
computed: {
mediaProxy: function () { return this.$store.state.config.mediaProxyAvailable },
whoToFollow: function () { return this.$store.state.config.suggestionsEnabled },
scopeOptions: function () { return this.$store.state.config.scopeOptionsEnabled },
formattingOptions: function () { return this.$store.state.config.formattingOptionsEnabled },
textlimit: function () { return this.$store.state.config.textlimit }
}
}
......
......@@ -8,12 +8,11 @@
</div>
<div class="panel-body features">
<ul>
<li>Media proxy</li>
<li>Local chat</li>
<li>Who to follow</li>
<li>Scope options</li>
<li>Formatting options</li>
<li>Text limit=</li>
<li v-if="mediaProxy">Media proxy</li>
<li v-if="whoToFollow">Who to follow</li>
<li v-if="scopeOptions">Scope options</li>
<li v-if="formattingOptions">Formatting options</li>
<li>Text limit={{textlimit}}</li>
</ul>
</div>
</div>
......
......@@ -225,4 +225,6 @@ window.fetch('/nodeinfo/2.0.json')
const suggestions = data.metadata.suggestions
store.dispatch('setOption', { name: 'suggestionsEnabled', value: suggestions.enabled })
store.dispatch('setOption', { name: 'suggestionsWeb', value: suggestions.web })
store.dispatch('setOption', { name: 'mediaProxyAvailable', value: data.metadata.mediaProxy })
})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment