mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe
synced 2025-04-30 11:09:30 +08:00
13 lines
674 B
JavaScript
13 lines
674 B
JavaScript
const FeaturesPanel = {
|
|
computed: {
|
|
chat: function () { return this.$store.state.instance.chatAvailable },
|
|
pleromaChatMessages: function () { return this.$store.state.instance.pleromaChatMessagesAvailable },
|
|
gopher: function () { return this.$store.state.instance.gopherAvailable },
|
|
whoToFollow: function () { return this.$store.state.instance.suggestionsEnabled },
|
|
mediaProxy: function () { return this.$store.state.instance.mediaProxyAvailable },
|
|
minimalScopesMode: function () { return this.$store.state.instance.minimalScopesMode },
|
|
textlimit: function () { return this.$store.state.instance.textlimit }
|
|
}
|
|
}
|
|
|
|
export default FeaturesPanel
|