Files
nairobi/app/helpers/admin/proposal_dashboard_actions_helper.rb
2019-03-27 15:22:14 +01:00

7 lines
202 B
Ruby

module Admin::ProposalDashboardActionsHelper
def active_human_readable(active)
return t("admin.dashboard.actions.index.active") if active
t("admin.dashboard.actions.index.inactive")
end
end