Sha256: 07311f1288f77643d397aaf5e6d0df4d0e22a82f7acaf8c5dc4a93f1dcaa2489
Contents?: true
Size: 412 Bytes
Versions: 58
Compression:
Stored size: 412 Bytes
Contents
# frozen_string_literal: true module Decidim module Meetings # Exposes the meeting resource so users can view them class VersionsController < Decidim::Meetings::ApplicationController include Decidim::ResourceVersionsConcern def versioned_resource @versioned_resource ||= Meeting.not_hidden.where(component: current_component).find(params[:meeting_id]) end end end end
Version data entries
58 entries across 58 versions & 1 rubygems