Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. insert into users (email, created_at, updated_at) values ('agostinox@gmail.com', '2014-01-01', '2014-01-01');
  2. INSERT 0 1
  3.  
  4. ActiveAdmin.register User do
  5.  
  6. index do
  7. column :email
  8. #column :current_sign_in_at
  9. #column :last_sign_in_at
  10. #column :sign_in_count
  11. default_actions
  12. end
  13.  
  14. filter :email
  15.  
  16. form do |f|
  17. f.inputs "User Details" do
  18. f.input :email
  19. #f.input :password
  20. #f.input :password_confirmation
  21. end
  22.  
  23. f.actions
  24.  
  25. end
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement