Compare commits

...

4 Commits

1 changed files with 4 additions and 0 deletions

View File

@ -73,6 +73,10 @@ export const useUserStore = defineStore({
});
},
async deleteAvatar(user: FG.User) {
await api.delete(`/users/${user.userid}/avatar`)
},
async getPermissions(force = false) {
if (force || this.permissions.length === 0) {
const { data } = await api.get<FG.Permission[]>('/roles/permissions');