pleroma-fe/src/components/features_panel/features_panel.js
Hakaba Hitoyo 049e2397b1 update
2018-09-03 15:23:09 +09:00

12 lines
501 B
JavaScript

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