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

oauth2.rb « monkey_patches « support « ci « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dfd5e319f00c38acd4a97f1b5ddb08b9aa51f75f (plain)
1
2
3
4
5
6
7
module OAuth2
  class Client
    def get_token(params, access_token_opts = {}, access_token_class = AccessToken)
      OpenStruct.new(token: "some_token")
    end
  end
end