Sha256: 44e4853071b8276d5557f8c102d7ab8c07e04773ec9c8804e06c1a2c3fba4cb7
Contents?: true
Size: 911 Bytes
Versions: 18
Compression:
Stored size: 911 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 do resources :meeting_closes, only: [:edit, :update] resource :registrations, only: [:edit, :update] do collection do get :export end end resources :attachments end root to: "meetings#index" end def load_seed nil end initializer "decidim_meetings.assets" do |app| app.config.assets.precompile += %w(admin/decidim_meetings_manifest.js) end end end end
Version data entries
18 entries across 18 versions & 2 rubygems