2018-09-03 15:43:10 +10:00
|
|
|
const FeaturesPanel = {
|
|
|
|
computed: {
|
2019-08-17 18:18:42 +10:00
|
|
|
chat: function () { return this.$store.state.instance.chatAvailable },
|
2018-09-10 04:21:23 +10:00
|
|
|
gopher: function () { return this.$store.state.instance.gopherAvailable },
|
|
|
|
whoToFollow: function () { return this.$store.state.instance.suggestionsEnabled },
|
|
|
|
mediaProxy: function () { return this.$store.state.instance.mediaProxyAvailable },
|
2019-03-30 21:41:42 +11:00
|
|
|
minimalScopesMode: function () { return this.$store.state.instance.minimalScopesMode },
|
2018-09-10 04:21:23 +10:00
|
|
|
textlimit: function () { return this.$store.state.instance.textlimit }
|
2018-09-03 15:43:10 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default FeaturesPanel
|