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

auth_hash.rb « atlassian « auth « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 047e4eabc51d861eaf297c78b35c0f6280beab95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true

module Gitlab
  module Auth
    module Atlassian
      class AuthHash < Gitlab::Auth::OAuth::AuthHash
        def token
          credentials[:token]
        end

        def refresh_token
          credentials[:refresh_token]
        end

        def expires?
          credentials[:expires]
        end

        def expires_at
          credentials[:expires_at]
        end

        private

        def credentials
          auth_hash[:credentials]
        end
      end
    end
  end
end