ensure we only fetch reports when we're an admin
ci/woodpecker/push/woodpecker Pipeline was successful Details

Ref #288
This commit is contained in:
FloatingGhost 2023-04-14 17:43:05 +01:00
parent ddea499a36
commit c540764408
1 changed files with 3 additions and 1 deletions

View File

@ -644,7 +644,9 @@ const users = {
store.dispatch('listSettingsProfiles')
store.dispatch('startFetchingConfig')
store.dispatch('startFetchingAnnouncements')
store.dispatch('startFetchingReports')
if (user.role === 'admin' || user.role === 'moderator') {
store.dispatch('startFetchingReports')
}
// Fetch our friends
store.rootState.api.backendInteractor.fetchFriends({ id: user.id })