blob: 75a671f262bb660ec5e1818c8c19d0b62f5785cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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 }
}
}
export default FeaturesPanel
|