2019-01-08 04:26:47 +11:00
|
|
|
import InstanceSpecificPanel from '../instance_specific_panel/instance_specific_panel.vue'
|
|
|
|
import FeaturesPanel from '../features_panel/features_panel.vue'
|
|
|
|
import TermsOfServicePanel from '../terms_of_service_panel/terms_of_service_panel.vue'
|
2019-11-09 16:21:07 +11:00
|
|
|
import StaffPanel from '../staff_panel/staff_panel.vue'
|
2019-11-09 17:09:32 +11:00
|
|
|
import MRFTransparencyPanel from '../mrf_transparency_panel/mrf_transparency_panel.vue'
|
2019-01-08 04:26:47 +11:00
|
|
|
|
|
|
|
const About = {
|
|
|
|
components: {
|
|
|
|
InstanceSpecificPanel,
|
|
|
|
FeaturesPanel,
|
2019-11-09 16:21:07 +11:00
|
|
|
TermsOfServicePanel,
|
2019-11-09 17:09:32 +11:00
|
|
|
StaffPanel,
|
|
|
|
MRFTransparencyPanel
|
2019-02-06 01:12:14 +11:00
|
|
|
},
|
|
|
|
computed: {
|
2019-11-09 14:57:09 +11:00
|
|
|
showFeaturesPanel () { return this.$store.state.instance.showFeaturesPanel },
|
|
|
|
showInstanceSpecificPanel () {
|
|
|
|
return this.$store.state.instance.showInstanceSpecificPanel &&
|
|
|
|
!this.$store.getters.mergedConfig.hideISP &&
|
|
|
|
this.$store.state.instance.instanceSpecificPanelContent
|
|
|
|
}
|
2019-01-08 04:26:47 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default About
|