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

tokens_controller.rb « oauth « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7889e89fc5c65a69e0fa3547c1c4c66ae7ed25fe (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

class Oauth::TokensController < Doorkeeper::TokensController
  include EnforcesTwoFactorAuthentication
  include RequestPayloadLogger

  alias_method :auth_user, :current_user
end