Skip to content

Commit

Permalink
Merge pull request #3787 from bbirman/build-fix
Browse files Browse the repository at this point in the history
Make jwt access token init public
  • Loading branch information
bbirman authored Dec 23, 2024
2 parents 4ee1195 + f7316ea commit fa8f7e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class JwtAccessToken : NSObject {
let payload: JwtPayload

/// Initializer to parse and decode the JWT string
@objc init(jwt: String) throws {
@objc public init(jwt: String) throws {
self.rawJwt = jwt
self.header = try JwtAccessToken.parseJwtHeader(jwt: jwt)
self.payload = try JwtAccessToken.parseJwtPayload(jwt: jwt)
Expand Down

0 comments on commit fa8f7e4

Please sign in to comment.