Role
Role
A Role represents a collection of permissions which determine the authorization level of a User.
Signature
class Role extends VendureEntity implements ChannelAware {
constructor(input?: DeepPartial<Role>)
@Column() code: string;
@Column() description: string;
@Column('simple-array') permissions: Permission[];
@ManyToMany(type => Channel)
@JoinTable()
channels: Channel[];
}
Extends
Implements
- ChannelAware
Members
constructor
method
type:
(input?: DeepPartial<Role>) => Role
code
property
type:
string
description
property
type:
string
permissions
property
type:
Permission[]
channels
property
type:
Channel[]