Afterstore refactor
1 unresolved thread
1 unresolved thread
Refactors afterstore to be more readable and do more error handling.
Merge request reports
Activity
- Resolved by HJ
13 store.dispatch('setInstanceOption', { name: 'name', value: name }) 14 store.dispatch('setInstanceOption', { name: 'registrationOpen', value: (registrationClosed === '0') }) 15 store.dispatch('setInstanceOption', { name: 'textlimit', value: parseInt(textlimit) }) 16 store.dispatch('setInstanceOption', { name: 'server', value: server }) 17 18 // TODO: default values for this stuff, added if to not make it break on 19 // my dev config out of the box. 20 if (uploadlimit) { 21 store.dispatch('setInstanceOption', { name: 'uploadlimit', value: parseInt(uploadlimit.uploadlimit) }) 22 store.dispatch('setInstanceOption', { name: 'avatarlimit', value: parseInt(uploadlimit.avatarlimit) }) 23 store.dispatch('setInstanceOption', { name: 'backgroundlimit', value: parseInt(uploadlimit.backgroundlimit) }) 24 store.dispatch('setInstanceOption', { name: 'bannerlimit', value: parseInt(uploadlimit.bannerlimit) }) 25 } 7 const getStatusnetConfig = async ({ store }) => { 8 try { 9 const res = await window.fetch('/api/statusnet/config.json') mentioned in commit 9fd44e4a
Please register or sign in to reply