15 lines
338 B
Ruby
15 lines
338 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
|
|
|
|
def default_actions
|
|
%w[polls email poster]
|
|
end
|
|
|
|
def css_for_resource(action)
|
|
"hide" if action == "proposed_action"
|
|
end
|
|
end
|