Sha256: deb5e879e13e74c19c122e4ab05921b3f7cffad94172f66ad3d832aae827c485
Contents?: true
Size: 628 Bytes
Versions: 10
Compression:
Stored size: 628 Bytes
Contents
# frozen_string_literal: true module Decidim module Sortitions # This is the engine that runs on the administration interface of `decidim_sortitions`. # 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
10 entries across 10 versions & 1 rubygems