mirror of
https://github.com/element-hq/element-android
synced 2024-11-24 02:15:35 +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
|
||||
|
||||
enum class LocationSharingOption {
|
||||
USER_CURRENT, // current user's location
|
||||
USER_LIVE, // user's location during a certain amount of time
|
||||
PINNED // static location pinned by the user
|
||||
/**
|
||||
* Current user's location.
|
||||
*/
|
||||
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