Sha256: b84fcb7b8b677c97046d8e0b4558a124812412e0a136ff8a75b8979d9b78faf4
Contents?: true
Size: 457 Bytes
Versions: 100
Compression:
Stored size: 457 Bytes
Contents
# frozen_string_literal: true module Decidim module Pages # This is the engine that runs on the public interface of `decidim-pages`. # It mostly handles rendering the created page associated to a participatory # process. class Engine < ::Rails::Engine isolate_namespace Decidim::Pages routes do resources :pages, only: [:show], controller: :application root to: "application#show" end end end end
Version data entries
100 entries across 100 versions & 2 rubygems