-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathOAuthProvider.swift
More file actions
49 lines (47 loc) · 1.31 KB
/
OAuthProvider.swift
File metadata and controls
49 lines (47 loc) · 1.31 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import Foundation
public enum OAuthProvider: String, CustomStringConvertible {
case amazon = "amazon"
case apple = "apple"
case auth0 = "auth0"
case authentik = "authentik"
case autodesk = "autodesk"
case bitbucket = "bitbucket"
case bitly = "bitly"
case box = "box"
case dailymotion = "dailymotion"
case discord = "discord"
case disqus = "disqus"
case dropbox = "dropbox"
case etsy = "etsy"
case facebook = "facebook"
case figma = "figma"
case github = "github"
case gitlab = "gitlab"
case google = "google"
case linkedin = "linkedin"
case microsoft = "microsoft"
case notion = "notion"
case oidc = "oidc"
case okta = "okta"
case paypal = "paypal"
case paypalSandbox = "paypalSandbox"
case podio = "podio"
case salesforce = "salesforce"
case slack = "slack"
case spotify = "spotify"
case stripe = "stripe"
case tradeshift = "tradeshift"
case tradeshiftBox = "tradeshiftBox"
case twitch = "twitch"
case wordpress = "wordpress"
case yahoo = "yahoo"
case yammer = "yammer"
case yandex = "yandex"
case zoho = "zoho"
case zoom = "zoom"
case githubImagine = "githubImagine"
case googleImagine = "googleImagine"
public var description: String {
return rawValue
}
}