1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00
Files
browser/src/models/response/organizationKeysResponse.ts
Vincent Salucci 73ec484b17 [Reset Password] Admin Actions (#349)
* [Reset Password] Admin Actions

* Updated password reset apis to use orgUser.Id instead of orgUser.UserId

* Added new ResetPassword policy type

* Added all necessary changes for organization changes

* Added get/post for org keys // Added org keys reponse model

* Fixed lint errors
2021-05-19 09:40:48 -05:00

8 lines
175 B
TypeScript

import { KeysResponse } from './keysResponse';
export class OrganizationKeysResponse extends KeysResponse {
constructor(response: any) {
super(response);
}
}