Sha256: f120bfa65d5e9b5bcdc40b0f38623547d1d586491d094ed0b85badc789d141a8

Contents?: true

Size: 369 Bytes

Versions: 8

Compression:

Stored size: 369 Bytes

Contents

# frozen_string_literal: true

module WorkOS
  module Types
    # The Provider constants are declarations of a
    # fixed set of values for SSO Providers.
    module Provider
      Apple = 'AppleOAuth'
      GitHub = 'GitHubOAuth'
      Google = 'GoogleOAuth'
      Microsoft = 'MicrosoftOAuth'

      ALL = [Apple, GitHub, Google, Microsoft].freeze
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
workos-5.11.1 lib/workos/types/provider.rb
workos-5.11.0 lib/workos/types/provider.rb
workos-5.10.0 lib/workos/types/provider.rb
workos-5.9.0 lib/workos/types/provider.rb
workos-5.8.0 lib/workos/types/provider.rb
workos-5.7.0 lib/workos/types/provider.rb
workos-5.6.0 lib/workos/types/provider.rb
workos-5.5.1 lib/workos/types/provider.rb