mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 10:13:31 +00:00
stub out policies menu
This commit is contained in:
@@ -14,6 +14,7 @@ import { Organization } from 'jslib/models/domain/organization';
|
||||
})
|
||||
export class ManageComponent implements OnInit {
|
||||
organization: Organization;
|
||||
accessPolicies = false;
|
||||
accessGroups = false;
|
||||
accessEvents = false;
|
||||
|
||||
@@ -22,6 +23,7 @@ export class ManageComponent implements OnInit {
|
||||
ngOnInit() {
|
||||
this.route.parent.params.subscribe(async (params) => {
|
||||
this.organization = await this.userService.getOrganization(params.organizationId);
|
||||
this.accessPolicies = this.organization.usePolicies;
|
||||
this.accessEvents = this.organization.useEvents;
|
||||
this.accessGroups = this.organization.useGroups;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user