frozen_string_literal magic comment has been removed until a decission is taken regarding to its convenience.
7 lines
220 B
Ruby
7 lines
220 B
Ruby
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
|