NewShareRef creates a *Builder for a "share" claim.
(authType string, transitive bool)
| 855 | |
| 856 | // NewShareRef creates a *Builder for a "share" claim. |
| 857 | func NewShareRef(authType string, transitive bool) *Builder { |
| 858 | return newClaim(&claimParam{ |
| 859 | claimType: ShareClaim, |
| 860 | authType: authType, |
| 861 | transitive: transitive, |
| 862 | }) |
| 863 | } |
| 864 | |
| 865 | func NewSetAttributeClaim(permaNode blob.Ref, attr, value string) *Builder { |
| 866 | return newClaim(&claimParam{ |