class Decidim::Meetings::AdminLog::MinutesPresenter
MeetingPresenter.new(action_log, view_helpers).present
view_helpers # => this comes from the views
action_log = Decidim::ActionLog.last
directly, but here’s an example:
Usage should be automatic and you shouldn’t need to call this class
for the ‘AdminLog` log.
This class holds the logic to present a `Decidim::Meetings::Minutes`
def action_string
def action_string case action when "create", "delete", "update" "decidim.meetings.admin_log.minutes.#{action}" else super end end
def diff_fields_mapping
def diff_fields_mapping { description: :i18n, video_url: :string, audio_url: :string, visible: :boolean } end
def i18n_labels_scope
def i18n_labels_scope "activemodel.attributes.minutes" end