Guest User

Untitled

a guest
Jun 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. ##In model
  2.  
  3. def auth_valid=(user_name)
  4. user_ob = User.find_by_login user_name
  5. if user_ob.nil?
  6. #from here i want to go back to view
  7. else
  8. self.user_id = user_ob.id
  9. end
  10. end
  11.  
  12. ##In view
  13.  
  14. <%= text_field_tag 'author[auth_valid][]' %>
Add Comment
Please, Sign In to add comment