Sha256: 7d8decf5dd84bc64a8c415cb6e99fb3069beb9e051f03f3130550e694a71f679
Contents?: true
Size: 964 Bytes
Versions: 14
Compression:
Stored size: 964 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 resource :invites, only: [:new, :create] 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
14 entries across 14 versions & 1 rubygems