mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
9 lines
173 B
Ruby
9 lines
173 B
Ruby
|
class UserOpenId < ActiveRecord::Base
|
||
|
belongs_to :user
|
||
|
attr_accessible :email, :url, :user_id, :active
|
||
|
|
||
|
validates_presence_of :email
|
||
|
validates_presence_of :url
|
||
|
|
||
|
end
|