Sha256: 49d2d5f575255086236f6d65b4f74d48200b10c0593eed5631d197139f27c9ac

Contents?: true

Size: 367 Bytes

Versions: 2

Compression:

Stored size: 367 Bytes

Contents

module Credentials
  def v1_creds
    {client_id: ENV["CLIENT_ID"], client_secret: ENV["CLIENT_SECRET"], domain: ENV["DOMAIN"]}
  end

  def v1_global_creds
    {client_id: ENV["GLOBAL_CLIENT_ID"], client_secret: ENV["GLOBAL_CLIENT_SECRET"], domain: ENV["DOMAIN"]}
  end

  def v2_creds
    {token: ENV["MASTER_JWT"], api_version: 2, domain: ENV["DOMAIN"]}
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
auth0-3.6.1 spec/support/credentials.rb
auth0-3.6.0 spec/support/credentials.rb