1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-08 20:50:28 +00:00

Fix comment

This commit is contained in:
Thomas Rittson
2025-07-19 10:03:32 +10:00
parent c22451ed14
commit 24727e6c4f

View File

@@ -5,9 +5,9 @@ import { CollectionAccessSelectionView } from "./collection-access-selection.vie
import { CollectionAccessDetailsResponse } from "./collection.response";
import { CollectionView } from "./collection.view";
// TODO: this is used to represent the pseudo "Unassigned" collection
// AND ALSO the user's personal vault - this should be separated out to different consts.
// The type union allows this to be glossed over for now.
// TODO: this is used to represent the pseudo "Unassigned" collection as well as
// the user's personal vault (pseudo organization). This should be separated out into different values.
// The intersection type allows this to be glossed over for now.
export const Unassigned = "unassigned" as CollectionId & OrganizationId;
export class CollectionAdminView extends CollectionView {