7 lines
202 B
Ruby
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
|