Skip to content

Commit

Permalink
Make AdditionalRecordId Sendable (StanfordSpezi#41)
Browse files Browse the repository at this point in the history
# Make AdditionalRecordId Sendable

## ♻️ Current situation & Problem
This PR makes the `AdditionalRecordId` sendable.


## ⚙️ Release Notes 
* `AdditionalRecordId` is now `Sendable` for improved compatibility


## 📚 Documentation
--


## ✅ Testing

--


## 📝 Code of Conduct & Contributing Guidelines 

By submitting creating this pull request, you agree to follow our [Code
of
Conduct](https://github.com/StanfordSpezi/.github/blob/main/CODE_OF_CONDUCT.md)
and [Contributing
Guidelines](https://github.com/StanfordSpezi/.github/blob/main/CONTRIBUTING.md):
- [x] I agree to follow the [Code of
Conduct](https://github.com/StanfordSpezi/.github/blob/main/CODE_OF_CONDUCT.md)
and [Contributing
Guidelines](https://github.com/StanfordSpezi/.github/blob/main/CONTRIBUTING.md).
  • Loading branch information
Supereg authored Nov 20, 2023
1 parent 901cf9d commit a9d3797
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/SpeziAccount/Model/AdditionalRecordId.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
///
/// The identifier is built by combining a stable ``AccountService`` identifier and the primary accountID (see ``AccountIdKey``).
/// Using both, additional data records of a user can be uniquely identified across ``AccountService`` implementations.
public struct AdditionalRecordId: CustomStringConvertible, Hashable, Identifiable {
public struct AdditionalRecordId: CustomStringConvertible, Hashable, Identifiable, Sendable {
/// A stable ``AccountService`` identifier. See ``AccountService/id-83c6c``.
public let accountServiceId: String
/// The primary user identifier. See ``AccountIdKey``.
Expand Down

0 comments on commit a9d3797

Please sign in to comment.