mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 05:13:29 +00:00
* Move CollectionDialog to Vault * Fix CollectionDialogModule imports * Move CollectionAdminService and View to Vault * Move CollectionService to Vault * Split GroupService into internal and public facing classes * Move collection models to vault * lint spacing fix * Move collection spec file * Fix spec import * Update apps/web/src/app/core/core.module.ts Co-authored-by: Thomas Rittson <31796059+eliykat@users.noreply.github.com> * Remove CoreOrganizationModule from CollectionDialogModule --------- Co-authored-by: Thomas Rittson <31796059+eliykat@users.noreply.github.com>
30 lines
848 B
TypeScript
30 lines
848 B
TypeScript
import { ITreeNodeObject } from "../../../models/domain/tree-node";
|
|
import { View } from "../../../models/view/view";
|
|
import { Collection } from "../domain/collection";
|
|
import { CollectionAccessDetailsResponse } from "../response/collection.response";
|
|
|
|
export const NestingDelimiter = "/";
|
|
|
|
export class CollectionView implements View, ITreeNodeObject {
|
|
id: string = null;
|
|
organizationId: string = null;
|
|
name: string = null;
|
|
externalId: string = null;
|
|
readOnly: boolean = null;
|
|
hidePasswords: boolean = null;
|
|
|
|
constructor(c?: Collection | CollectionAccessDetailsResponse) {
|
|
if (!c) {
|
|
return;
|
|
}
|
|
|
|
this.id = c.id;
|
|
this.organizationId = c.organizationId;
|
|
this.externalId = c.externalId;
|
|
if (c instanceof Collection) {
|
|
this.readOnly = c.readOnly;
|
|
this.hidePasswords = c.hidePasswords;
|
|
}
|
|
}
|
|
}
|