Sha256: 610e756a48618fd8c88af072e685d3f71fa1f6bd79aa3068320c19549a6cf574
Contents?: true
Size: 646 Bytes
Versions: 45
Compression:
Stored size: 646 Bytes
Contents
# frozen_string_literal: true module Decidim module Meetings module Admin # Custom helpers, scoped to the meetings admin engine. # module ApplicationHelper include Decidim::MapHelper include Decidim::Admin::ResourceScopeHelper def tabs_id_for_service(service) "meeting_service_#{service.to_param}" end def tabs_id_for_agenda_item(agenda_item) "meeting_agenda_item_#{agenda_item.to_param}" end def tabs_id_for_agenda_item_child(agenda_item) "meeting_agenda_item_#{agenda_item.to_param_child}" end end end end end
Version data entries
45 entries across 45 versions & 1 rubygems