Skip to content

Commit

Permalink
Refactor UserData enum to be more descriptive
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Nov 4, 2024
1 parent f9f08c6 commit f94bff3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions neon_data_models/enum.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ class UserData(IntEnum):
"""
CACHES = 0
PROFILE = 1
ALL_TR = 2
CONF_LIKES = 3
CONF_DISLIKES = 4
TRANSCRIPTS = 2
LIKED_BRANDS = 3
DISLIKED_BRANDS = 4
ALL_DATA = 5
ALL_MEDIA = 6
ALL_UNITS = 7
ALL_LANGUAGE = 8
UNITS_CONFIG = 7
LANGUAGE_CONFIG = 8


class AlertType(IntEnum):
Expand Down

0 comments on commit f94bff3

Please sign in to comment.