Sha256: b4b2c43c591900c75ed3f5b65952756b96b1a31d3e9ed43e242dbcd71f604851
Contents?: true
Size: 481 Bytes
Versions: 102
Compression:
Stored size: 481 Bytes
Contents
export class Grant { /** * Initialize the Grant * @param {Agent} agent the agent the grant applies to * @param {String} access the access level to grant * @param {String} accessLabel the access level to display */ constructor(agent, access, accessLabel) { this.agent = agent this.access = access this.accessLabel = accessLabel this.index = 0 } get name() { return this.agent.name } get type() { return this.agent.type } }
Version data entries
102 entries across 102 versions & 3 rubygems