Sha256: b63be8685aebd113f684013953cc6656a8f4170aff39852fc11b9860ce2f0739
Contents?: true
Size: 600 Bytes
Versions: 22
Compression:
Stored size: 600 Bytes
Contents
# frozen_string_literal: true require "searchlight" require "kaminari" require "jquery-tmpl-rails" 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 Engine < ::Rails::Engine isolate_namespace Decidim::Meetings routes do resources :meetings, only: [:index, :show] do resource :meeting_widget, only: :show, path: "embed" end root to: "meetings#index" end end end end
Version data entries
22 entries across 22 versions & 2 rubygems