official_module/lib/official_module/engine.rb

18 lines
689 B
Ruby

module OfficialModule
class Engine < ::Rails::Engine
initializer "official_module" do
OrbitApp.registration "OfficialModule", :type => "ModuleApp" do
module_label "official_module.official_module"
base_url File.expand_path File.dirname(__FILE__)
set_keyword_contstraints ['/store/check_module_permissions',
'/store/register_old_sites_modules',
'/store/check_for_rulingcom',
'/store/desktop/widgets',
'/desktop/widget_download_url',
'/store/form_token']
end
end
end
end