mirror of
https://github.com/discourse/discourse.git
synced 2025-02-12 10:28:30 +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
|