mirror of
https://github.com/element-hq/element-android
synced 2024-11-27 20:06:51 +03:00
Fix comment form in enum
This commit is contained in:
parent
f4b5353424
commit
442d722980
1 changed files with 14 additions and 3 deletions
|
@ -17,7 +17,18 @@
|
||||||
package im.vector.app.features.location.option
|
package im.vector.app.features.location.option
|
||||||
|
|
||||||
enum class LocationSharingOption {
|
enum class LocationSharingOption {
|
||||||
USER_CURRENT, // current user's location
|
/**
|
||||||
USER_LIVE, // user's location during a certain amount of time
|
* Current user's location.
|
||||||
PINNED // static location pinned by the user
|
*/
|
||||||
|
USER_CURRENT,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* User's location during a certain amount of time.
|
||||||
|
*/
|
||||||
|
USER_LIVE,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Static location pinned by the user.
|
||||||
|
*/
|
||||||
|
PINNED
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue