mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:06:57 +08: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
|