TF-4269 Integrate Sentry into iOS NSE and automate dSYM upload in CI
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import Foundation
|
||||
import Sentry
|
||||
|
||||
struct KeychainSharingSession: Codable {
|
||||
let accountId: String
|
||||
@@ -61,4 +62,12 @@ extension KeychainSharingSession {
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
var sentryUser: User {
|
||||
let user = User()
|
||||
user.userId = self.accountId
|
||||
user.email = self.userName
|
||||
user.username = self.userName
|
||||
return user
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user