(...users: UserProfile[])
| 162 | readonly credentials = new Set<Credential>(); |
| 163 | |
| 164 | addUser(...users: UserProfile[]) { |
| 165 | for (const user of users) { |
| 166 | this.principals.add(new TypedPrincipal(user, 'USER')); |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | addApplication(app: ClientApplication) { |
| 171 | this.principals.add(new TypedPrincipal(app, 'APPLICATION')); |