search for: customer_admin

Displaying 1 result from an estimated 1 matches for "customer_admin".

Did you mean: customer_admins
2006 Apr 19
0
My database model''s connection appears messed up.
I am trying to add data from a form, and the rails doesn''t appear to be making any effort at all. I''ve put deliberately erroneous data, but still nothing. All the development log shows is this. This is the code in use - based on the example from Rails book def add_customer_admin if request.get? @login = CustomerAdmin.new else @login = CustomerAdmin.new(params[:customer_admin]) STDERR.puts params if @login.save else # STDERR.puts "shitty outcome" redirect_to(:action => :add_customer_admin) end end end I made...