Redirect to enterprises index page after updating producer properties

This commit is contained in:
Rohan Mitchell
2014-06-18 15:43:22 +10:00
parent c3cec34186
commit cf4e7b18b4
2 changed files with 7 additions and 2 deletions

View File

@@ -51,9 +51,13 @@ module Admin
@enterprise_fees = EnterpriseFee.managed_by(spree_current_user).for_enterprise(@enterprise).order(:fee_type, :name).all
end
# Overriding method on Spree's resource controller
def location_after_save
# Overriding method on Spree's resource controller
main_app.edit_admin_enterprise_path(@enterprise)
if params[:enterprise].key? :producer_properties_attributes
main_app.admin_enterprises_path
else
main_app.edit_admin_enterprise_path(@enterprise)
end
end
end
end

View File

@@ -1,4 +1,5 @@
- content_for :page_title do
= "#{@enterprise.name}:"
Producer Properties