scinote-web/config/initializers/canaid.rb

19 lines
579 B
Ruby
Raw Normal View History

Canaid.configure do |config|
include AddonsHelper
config.permissions_paths << 'app/permissions/**/*.rb'
# Include the included addons' permissions folders
rx = %r{^.*(addons/.*/app/permissions)$}
list_all_addons.each do |addon|
full_path = addon::Engine
.instance
.config
.eager_load_paths
.select { |p| p.ends_with?('permissions') }
.first
2018-01-31 15:20:42 +08:00
next unless full_path
res = rx.match(full_path)
config.permissions_paths << "#{res[1]}/**/*.rb" if res && res.length > 1
end
end