bus_booking/lib/bus_booking/engine.rb

14 lines
390 B
Ruby

module BusBooking
class Engine < ::Rails::Engine
initializer "bus_booking" do
OrbitApp.registration "BusBooking", :type => "OrbitMemberModule" do
member_module_enabled true
member_module_label "bus_booking.bus_booking"
member_widget_enabled false
member_widget_label "bus_booking.bus_booking"
member_module_icon "icon.png"
end
end
end
end