mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 11:50:49 +08:00
init project
This commit is contained in:
11
app/models/open_user.rb
Normal file
11
app/models/open_user.rb
Normal file
@@ -0,0 +1,11 @@
|
||||
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
|
||||
Reference in New Issue
Block a user