Advertisement
Guest User

Untitled

a guest
Jun 24th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class RegistrationsController < Devise::RegistrationsController
  2. after_action :run_function, only: [:create]
  3.  
  4. def create
  5. super
  6. end
  7.  
  8. protected
  9.  
  10. def run_function
  11. @sketch = current_user.sketches.build(attribute: "value")
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement