(uuid: string)
| 163 | } |
| 164 | |
| 165 | async deleteInstance(uuid: string) { |
| 166 | if (this.hasInstance(uuid)) { |
| 167 | this.objects.delete(uuid); |
| 168 | await Storage.getStorage().delete("User", uuid); |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | getUserBySsoSub(ssoSub: string): User | null { |
| 173 | for (const [, user] of this.objects) { |
no test coverage detected