2018-09-03 07:43:10 +02:00
|
|
|
const FeaturesPanel = {
|
|
|
|
computed: {
|
2018-09-04 03:44:25 +02:00
|
|
|
chat: function () {
|
2018-09-09 21:31:34 +02:00
|
|
|
return this.$store.state.instance.chatAvailable && (!this.$store.state.chatDisabled)
|
2018-09-04 03:44:25 +02:00
|
|
|
},
|
2018-09-09 20:21:23 +02: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 11:41:42 +01:00
|
|
|
minimalScopesMode: function () { return this.$store.state.instance.minimalScopesMode },
|
2018-09-09 20:21:23 +02:00
|
|
|
textlimit: function () { return this.$store.state.instance.textlimit }
|
2018-09-03 07:43:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default FeaturesPanel
|