summaryrefslogtreecommitdiff
path: root/app/models/oauth_access_grant.rb
blob: d5a8a1a25b69121f05b45d753bf35ac30f8dd495 (plain)
1
2
3
4
5
6
# frozen_string_literal: true

class OauthAccessGrant < Doorkeeper::AccessGrant
  belongs_to :resource_owner, class_name: 'User'
  belongs_to :application, class_name: 'Doorkeeper::Application'
end