DeleteLink deletes the inheritance link between two roles. role: name1 and role: name2. domain is a prefix to the roles (can be used for other purposes).
(name1 string, name2 string, domain ...string)
| 30 | // DeleteLink deletes the inheritance link between two roles. role: name1 and role: name2. |
| 31 | // domain is a prefix to the roles (can be used for other purposes). |
| 32 | DeleteLink(name1 string, name2 string, domain ...string) error |
| 33 | // HasLink determines whether a link exists between two roles. role: name1 inherits role: name2. |
| 34 | // domain is a prefix to the roles (can be used for other purposes). |
| 35 | HasLink(name1 string, name2 string, domain ...string) (bool, error) |
no outgoing calls