mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix inherited permissions being set at user level & unable to unselect existing perms
This commit is contained in:
parent
73b1b942a9
commit
eb4c8e1b1e
@ -69,6 +69,10 @@ export class PermissionsSelectComponent
|
||||
}
|
||||
|
||||
writeValue(permissions: string[]): void {
|
||||
if (this.permissions === permissions) {
|
||||
return
|
||||
}
|
||||
|
||||
this.permissions = permissions ?? []
|
||||
const allPerms = this._inheritedPermissions.concat(this.permissions)
|
||||
|
||||
@ -138,7 +142,10 @@ export class PermissionsSelectComponent
|
||||
this.typesWithAllActions.delete(typeKey)
|
||||
}
|
||||
})
|
||||
this.onChange(permissions)
|
||||
|
||||
this.onChange(
|
||||
permissions.filter((p) => !this._inheritedPermissions.includes(p))
|
||||
)
|
||||
})
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user