Skip to content

Commit

Permalink
Auto stash before merge of "main" and "pre-release-1-7-0"
Browse files Browse the repository at this point in the history
  • Loading branch information
sagishm committed Jul 30, 2024
1 parent 018b16e commit c2a0681
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions GigyaSwift/Global/Providers/Provider.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public protocol Provider: AnyObject {

func logout()

func getProviderSessions(token: String, expiration: String?, code: String?, firstName: String?, lastName: String?) -> String

func getProviderSessions(data: [String: Any]) -> String
var didFinish: () -> Void { get set }

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ final class WebLoginProvider: Provider {
didFinish()
}

func getProviderSessions(token: String, expiration: String?, code: String?, firstName: String?, lastName: String?) -> String {
func getProviderSessions(data: [String: Any]) -> String {
return ""
}

Expand Down

0 comments on commit c2a0681

Please sign in to comment.