Guest User

Untitled

a guest
Mar 14th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class Admin::User < ActiveRecord::Base
  2. end
  3.  
  4. class Admin::UsersController < ApplicationController
  5. def index
  6. @user = User.create(:name => 'test', :password => 'blabla')
  7. end
  8. end
  9.  
  10. # views/admin/users/index.html.erb
  11. <%= @user.name %>
  12. <%= @user.password %>
Add Comment
Please, Sign In to add comment