mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-26 05:03:23 +00:00
Apply Prettier (#194)
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
import { GroupEntry } from '../groupEntry';
|
||||
import { GroupEntry } from "../groupEntry";
|
||||
|
||||
export class GroupResponse {
|
||||
externalId: string;
|
||||
displayName: string;
|
||||
userIds: string[];
|
||||
externalId: string;
|
||||
displayName: string;
|
||||
userIds: string[];
|
||||
|
||||
constructor(g: GroupEntry) {
|
||||
this.externalId = g.externalId;
|
||||
this.displayName = g.displayName;
|
||||
this.userIds = Array.from(g.userMemberExternalIds);
|
||||
}
|
||||
constructor(g: GroupEntry) {
|
||||
this.externalId = g.externalId;
|
||||
this.displayName = g.displayName;
|
||||
this.userIds = Array.from(g.userMemberExternalIds);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user