mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
* Add 'manage' option to collection access permissions * Add 'manage' to collection permissions * remove service accidentally committed from another branch * Update CLI commands * update message casing to be consistent * access selector model updates
17 lines
499 B
TypeScript
17 lines
499 B
TypeScript
import { BaseResponse } from "../../../models/response/base.response";
|
|
|
|
export class SelectionReadOnlyResponse extends BaseResponse {
|
|
id: string;
|
|
readOnly: boolean;
|
|
hidePasswords: boolean;
|
|
manage: boolean;
|
|
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.id = this.getResponseProperty("Id");
|
|
this.readOnly = this.getResponseProperty("ReadOnly");
|
|
this.hidePasswords = this.getResponseProperty("HidePasswords");
|
|
this.manage = this.getResponseProperty("Manage");
|
|
}
|
|
}
|