Can set producer_profile_only using welcome page

This commit is contained in:
Rob Harrington
2014-10-23 16:40:58 +11:00
parent 996b2f2604
commit e1cf5ceb57
4 changed files with 27 additions and 7 deletions

View File

@@ -19,6 +19,7 @@ module Admin
def set_sells
enterprise = Enterprise.find(params[:id])
attributes = { sells: params[:sells] }
attributes[:producer_profile_only] = !!params[:producer_profile_only] if params[:sells] == 'none'
attributes[:shop_trial_start_date] = Time.now if params[:sells] == "own"
if %w(none own).include?(params[:sells])