Now load instance settings on page load

This commit is contained in:
Eliot Berriot 2018-02-17 21:22:52 +01:00
parent bb9a614aa7
commit aa67be9063
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
4 changed files with 117 additions and 0 deletions

View file

@ -31,6 +31,9 @@ import Sidebar from '@/components/Sidebar'
export default {
name: 'app',
components: { Sidebar }
created () {
this.$store.dispatch('instance/fetchSettings')
}
}
</script>