Replace hardcoded value that represents the group "All" with a constant

This commit is contained in:
Mauricio Colli 2020-01-28 02:59:49 -03:00
parent 5ea323ce02
commit 3f32573638
No known key found for this signature in database
GPG key ID: F200BFD6F29DDD85
9 changed files with 37 additions and 29 deletions

View file

@ -24,5 +24,7 @@ data class FeedGroupEntity(
const val ID = "uid"
const val NAME = "name"
const val ICON = "icon_id"
const val GROUP_ALL_ID = -1L
}
}