1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

refactor: move organization service and organization-user response to admin-console, refs AC-1202 (#5055)

This commit is contained in:
Vincent Salucci
2023-03-27 14:38:57 -05:00
committed by GitHub
parent c241e5e0b9
commit 092a2ba984
6 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
import { OrganizationUserStatusType } from "@bitwarden/common/admin-console/enums/organization-user-status-type";
import { OrganizationUserType } from "@bitwarden/common/admin-console/enums/organization-user-type";
import { BaseResponse } from "../../../models/response/base.response";
export class OrganizationUserResponse implements BaseResponse {
object: string;
id: string;
email: string;
name: string;
status: OrganizationUserStatusType;
type: OrganizationUserType;
twoFactorEnabled: boolean;
constructor() {
this.object = "org-member";
}
}