Advertisement
Guest User

Untitled

a guest
May 22nd, 2013
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.17 KB | None | 0 0
  1. class User < ActiveRecord::Base
  2.   attr_accessible :email, :name, :password
  3.   def self.login(username, password)
  4.     where(name: username, password: password).first
  5.   end
  6. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement