Make Avatar struct members public (#615)

This commit is contained in:
Joe Gasiorek 2019-02-04 07:58:44 -08:00 коммит произвёл Edouard Oger
Родитель ca04592433
Коммит 2ed0fe216e
2 изменённых файлов: 9 добавлений и 2 удалений

Просмотреть файл

@ -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> {