Sha256: 77feebfac1da74f6671528bf4a1d4cb6133928741acf43d8ff80d89802c58ed8
Contents?: true
Size: 456 Bytes
Versions: 8
Compression:
Stored size: 456 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
8 entries across 8 versions & 2 rubygems