2018-09-03 15:43:10 +10:00
|
|
|
const FeaturesPanel = {
|
|
|
|
computed: {
|
2018-09-03 16:23:09 +10:00
|
|
|
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 }
|
2018-09-03 15:43:10 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default FeaturesPanel
|