module Bitbuckit::Authentication

Public Instance Methods

application_authentication() click to toggle source
# File lib/bitbuckit/authentication.rb, line 3
def application_authentication
  if @access_token
    {
      access_token: @access_token,
      refresh_token: @refresh_token
    }
  end
end