You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
354 B
10 lines
354 B
# Pre-create base role
|
|
UserRole.everyone
|
|
|
|
# Create default roles defined in config file
|
|
default_roles = YAML.load_file(Rails.root.join('config', 'roles.yml'))
|
|
|
|
default_roles.each do |_, config|
|
|
UserRole.create_with(position: config['position'], permissions_as_keys: config['permissions'], highlighted: true).find_or_create_by(name: config['name'])
|
|
end
|