StaffPanel: Move staff loading to panel creation.

This commit is contained in:
lain 2020-07-07 14:39:43 +02:00
parent bbb977a044
commit 431b3f527d
3 changed files with 9 additions and 1 deletions

View file

@ -215,7 +215,6 @@ const getAppSecret = async ({ store }) => {
const resolveStaffAccounts = ({ store, accounts }) => {
const nicknames = accounts.map(uri => uri.split('/').pop())
nicknames.map(nickname => store.dispatch('fetchUser', nickname))
store.dispatch('setInstanceOption', { name: 'staffAccounts', value: nicknames })
}