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

oauth_access_token.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 116fb71ac083e20467d6ea4d058eb26ad68eee53 (plain)
1
2
3
4
class OauthAccessToken < ActiveRecord::Base
  belongs_to :resource_owner, class_name: 'User'
  belongs_to :application, class_name: 'Doorkeeper::Application'
end