danimashu/sudamos

View on GitHub
app/controllers/contacts_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ContactsController < InheritedResources::Base
  actions :create
  belongs_to :advert, :user, optional: true

  def create
    create! do |_success, failure|
      failure.html do
        redirect_to [parent], alert: t("flash.contacts.create.alert")
      end
    end
  end
end