AyuntamientoMadrid/participacion

View on GitHub
app/helpers/suggestions_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module SuggestionsHelper
  def suggest_data(record)
    return unless record.new_record?

    {
      js_suggest_result: "js_suggest_result",
      js_suggest: ".js-suggest",
      js_url: polymorphic_path(record.class, action: :suggest)
    }
  end
end