AyuntamientoMadrid/participacion

View on GitHub
app/helpers/admin/proposal_dashboard_actions_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
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