Welcome to mirror list, hosted at ThFree Co, Russian Federation.

oauth_access_grant.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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