Sha256: a41c8f89238b11592aff8b4aae07a59b24423ea1653af6445f1b7a0eb71f4af4
Contents?: true
Size: 511 Bytes
Versions: 13
Compression:
Stored size: 511 Bytes
Contents
# frozen_string_literal: true module Decidim module Results # This is the engine that runs on the public interface of `decidim-results`. # It mostly handles rendering the created reuslts associated to a participatory # process. class AdminEngine < ::Rails::Engine isolate_namespace Decidim::Results::Admin paths["db/migrate"] = nil routes do resources :results root to: "results#index" end def load_seed nil end end end end
Version data entries
13 entries across 13 versions & 2 rubygems