This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2023-07-12 00:47:08 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-04 17:41:40 -07:00
|
|
|
# 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
|