Sha256: fc3c909fe7f52458abcba73588804510551c3ac9fb7727a3e4655f22c19deacf
Contents?: true
Size: 516 Bytes
Versions: 4
Compression:
Stored size: 516 Bytes
Contents
# frozen_string_literal: true module Decidim module Meetings # This is the engine that runs on the public interface of `decidim-meetings`. # It mostly handles rendering the created meeting associated to a participatory # process. class AdminEngine < ::Rails::Engine isolate_namespace Decidim::Meetings::Admin paths["db/migrate"] = nil routes do resources :meetings root to: "meetings#index" end def load_seed nil end end end end
Version data entries
4 entries across 4 versions & 2 rubygems