Skip to content

Commit

Permalink
ADD NotificationTypeEnumV8
Browse files Browse the repository at this point in the history
- Adds NotificationTypeEnumV8 that adds three new raffle related
  notification types introduced with HyperNet Relay release.
  • Loading branch information
mateuszkrasucki committed Dec 11, 2019
1 parent 16d2a0a commit 6766f8e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions eve_glue/notification_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,3 +249,13 @@ class NotificationTypeEnumV2(enum.Enum):
"OfferToAllyRetracted": 242,
}
)

NotificationTypeEnumV8 = new_from_enum( # pylint: disable=invalid-name
"NotificationTypeEnumV8",
NotificationTypeEnumV7,
add={
"RaffleCreated": 243,
"RaffleExpired": 244,
"RaffleFinished": 245,
}
)

0 comments on commit 6766f8e

Please sign in to comment.