Sha256: 9a75129ba6b898552275f3c83d1a2932cc06aa831f7a6461394298382413b389
Contents?: true
Size: 1.19 KB
Versions: 12
Compression:
Stored size: 1.19 KB
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 paths["lib/tasks"] = nil routes do resources :meetings do resources :meeting_closes, only: [:edit, :update] resource :registrations, only: [:edit, :update] do resources :invites, only: [:index, :create] resource :form, only: [:edit, :update], controller: "registration_form" collection do get :export post :validate_registration_code end end resources :agenda, except: [:index, :destroy] resources :attachment_collections resources :attachments resources :copies, controller: "meeting_copies", only: [:new, :create] resources :minutes, except: [:show, :index] end root to: "meetings#index" end def load_seed nil end end end end
Version data entries
12 entries across 12 versions & 1 rubygems