Sha256: c9d1c35e5cbb7c1f23c956b1f85fdb246ae92139d54b0dc9d0cd03b1498b7eae
Contents?: true
Size: 495 Bytes
Versions: 14
Compression:
Stored size: 495 Bytes
Contents
# frozen_string_literal: true module Decidim module Blogs # This is the admin interface for `decidim-blogs`. It lets you edit and # configure the blog associated to a participatory process. class AdminEngine < ::Rails::Engine isolate_namespace Decidim::Blogs::Admin paths["db/migrate"] = nil paths["lib/tasks"] = nil routes do resources :posts root to: "posts#index" end def load_seed nil end end end end
Version data entries
14 entries across 14 versions & 1 rubygems