Make Avatar struct members public (#615)
This commit is contained in:
Родитель
ca04592433
Коммит
2ed0fe216e
|
@ -16,6 +16,13 @@
|
|||
- `fun deleteVisitsSince(since: Long)`: Deletes all visits between the given unix timestamp (in milliseconds) and the present ([#591](https://github.com/mozilla/application-services/pull/591)).
|
||||
- Note that these deletions are synced!
|
||||
|
||||
## FxA
|
||||
|
||||
### What's Fixed
|
||||
|
||||
- iOS Framework: Members of Avatar struct are now public. ([#615](https://github.com/mozilla/application-services/pull/615))
|
||||
|
||||
|
||||
# 0.15.0 (_2019-02-01_)
|
||||
|
||||
[Full Changelog](https://github.com/mozilla/application-services/compare/v0.14.0...v0.15.0)
|
||||
|
|
|
@ -288,8 +288,8 @@ open class AccessTokenInfo: RustStructPointer<AccessTokenInfoC> {
|
|||
}
|
||||
|
||||
public struct Avatar {
|
||||
let url: String
|
||||
let isDefault: Bool
|
||||
public let url: String
|
||||
public let isDefault: Bool
|
||||
}
|
||||
|
||||
open class Profile: RustStructPointer<ProfileC> {
|
||||
|
|
Загрузка…
Ссылка в новой задаче