This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump extension package to 1.1.0
- Loading branch information
Showing
7 changed files
with
49 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// | ||
// OIDCMethod.swift | ||
// | ||
// | ||
// Created by Jerry Liu on 10/17/22. | ||
// | ||
|
||
import Foundation | ||
internal enum OIDCMethod: String, CaseIterable { | ||
case magic_auth_login_with_oidc | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// | ||
// OpenIdConfiguration.swift | ||
// | ||
// | ||
// Created by Jerry Liu on 10/17/22. | ||
// | ||
|
||
import Foundation | ||
import MagicSDK | ||
|
||
public struct OpenIdConfiguration: BaseConfiguration { | ||
public var jwt: String | ||
public var providerId: String | ||
|
||
public init(jwt: String, providerId: String) { | ||
self.jwt = jwt | ||
self.providerId = providerId | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import XCTest | ||
@testable import MagicExt_OIDC | ||
|
||
final class MagicExt_OIDCTests: XCTestCase { | ||
func testExample() throws { | ||
} | ||
} |