Files
nairobi/app/helpers/admin/proposal_dashboard_actions_helper.rb
Juan Salvador Pérez García 1464bddfa8 Fixes #134
Adds an administration interface for the proposal dashboard actions.
2018-07-17 17:48:46 +02:00

9 lines
251 B
Ruby

# frozen_string_literal: true
module Admin::ProposalDashboardActionsHelper
def active_human_readable(active)
return t('admin.proposal_dashboard_actions.index.active') if active
t('admin.proposal_dashboard_actions.index.inactive')
end
end