Treat association between users and OAuth 2 applications as polymorphic
This commit is contained in:
parent
4d47cff5e1
commit
377f394a7c
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ class User < ApplicationRecord
|
|||
has_many :client_applications
|
||||
has_many :oauth_tokens, -> { order(:authorized_at => :desc).preload(:client_application) }, :class_name => "OauthToken"
|
||||
|
||||
has_many :oauth2_applications, :class_name => Doorkeeper.config.application_model.name, :foreign_key => :owner_id
|
||||
has_many :oauth2_applications, :class_name => Doorkeeper.config.application_model.name, :as => :owner
|
||||
has_many :access_grants, :class_name => Doorkeeper.config.access_grant_model.name, :foreign_key => :resource_owner_id
|
||||
has_many :access_tokens, :class_name => Doorkeeper.config.access_token_model.name, :foreign_key => :resource_owner_id
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue