WithAcl enables ACL feature for Dgraph cluster
(aclTTL time.Duration)
| 176 | |
| 177 | // WithAcl enables ACL feature for Dgraph cluster |
| 178 | func (cc ClusterConfig) WithACL(aclTTL time.Duration) ClusterConfig { |
| 179 | cc.acl = true |
| 180 | cc.aclTTL = aclTTL |
| 181 | return cc |
| 182 | } |
| 183 | |
| 184 | // WithAclAlg sets the JWT signing algorithm for dgraph ACLs |
| 185 | func (cc ClusterConfig) WithAclAlg(alg jwt.SigningMethod) ClusterConfig { |
no outgoing calls