mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 11:50:49 +08:00
11 lines
219 B
Ruby
11 lines
219 B
Ruby
class OpenUser < ApplicationRecord
|
|
belongs_to :user
|
|
|
|
validates :uid, presence: true, uniqueness: { scope: :type }
|
|
|
|
serialize :extra, JSON
|
|
|
|
def can_bind_cache_key
|
|
"open_user:#{type}:#{uid}:can_bind"
|
|
end
|
|
end |