Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,15 @@ open class FxAccountManager: @unchecked Sendable {
}
}

/// Get a list of the attached OAuth clients.
public func getAttachedClients() -> Result<[AttachedClient], Error> {
do {
return try .success(requireAccount().getAttachedClients())
} catch {
return .failure(error)
}
}

/// The account password has been changed locally and a new session token has been sent to us through WebChannel.
public func handlePasswordChanged(
newSessionToken: String,
Expand Down
Loading