()
| 367 | canManageLicensesViaUI () { return this.clientPermissions?.manageLicensesViaUI != null ? this.clientPermissions?.manageLicensesViaUI : true } |
| 368 | |
| 369 | canRevokeLicensesViaUI () { |
| 370 | if (!this.clientPermissions || (this.clientPermissions.manageLicensesViaUI && this.clientPermissions.revokeLicensesViaUI)) { |
| 371 | return true |
| 372 | } |
| 373 | return false |
| 374 | } |
| 375 | |
| 376 | setRole (role, force = false) { |
| 377 | const oldRole = this.get('role') |
nothing calls this directly
no outgoing calls
no test coverage detected