Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.3 KB

inherited-button.directive.md

File metadata and controls

40 lines (29 loc) · 1.3 KB
Title Added Status Last reviewed
Inherit Permission directive
v2.3.0
Active
2019-01-16

Update the current node by adding/removing the inherited permissions.

Basic Usage

    <button mat-raised-button
            color="primary"
            adf-inherit-permission [nodeId]="nodeId"
            (updated)="onUpdatedPermissions($node)">PERMISSION</button>

Class members

Properties

Name Type Default value Description
nodeId string ID of the node to add/remove inherited permissions.

Events

Name Type Description
error EventEmitter<any> Emitted when an error occurs.
updated EventEmitter<Node> Emitted when the node is updated.

Details

This directive switches inheritance of permissions on or off depending on what is set in the node entity. So if the node has inherited permissions, this will remove them and vice versa. If the node does not have inherited permissions then this will add them.