Sha256: 16c8eeafce755fa9a53a1c6d2c3d4bff4a481dc215d8796e9b0c0f11478fa30f
Contents?: true
Size: 625 Bytes
Versions: 30
Compression:
Stored size: 625 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] resources :attachments end root to: "meetings#index" end def load_seed nil end end end end
Version data entries
30 entries across 30 versions & 2 rubygems