Sha256: 9f130e30b838b505f955a249590834bc29d1b4099a53788cc49da9f5d7456756
Contents?: true
Size: 629 Bytes
Versions: 73
Compression:
Stored size: 629 Bytes
Contents
# frozen_string_literal: true module Decidim module Sortitions # This is the engine that runs on the administration interface of `decidim_sorititions`. # It mostly handles rendering the created projects associated to a participatory # process. class AdminEngine < ::Rails::Engine isolate_namespace Decidim::Sortitions::Admin paths["db/migrate"] = nil paths["lib/tasks"] = nil routes do resources :sortitions do get "confirm_destroy", on: :member end root to: "sortitions#index" end def load_seed nil end end end end
Version data entries
73 entries across 73 versions & 1 rubygems