Sha256: 94998409fad8cb1eacf3221c053bbce3510746df5cb5ec445b0f4bdbb729124f
Contents?: true
Size: 497 Bytes
Versions: 2
Compression:
Stored size: 497 Bytes
Contents
# frozen_string_literal: true require "searchlight" require "kaminari" module Decidim module Meetings # This is the engine that runs on the public interface of `decidim-meetings`. # It mostly handles rendering the created meeting associated to a participatory # process. class ListEngine < ::Rails::Engine isolate_namespace Decidim::Meetings routes do resources :meetings, only: [:index, :show] root to: "meetings#index" end end end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
decidim-meetings-0.0.2 | lib/decidim/meetings/list_engine.rb |
decidim-0.0.2 | decidim-meetings/lib/decidim/meetings/list_engine.rb |