Skip to content

Commit

Permalink
feat: Add new API routes for notifications
Browse files Browse the repository at this point in the history
related to #951

Signed-off-by: Ginny Guan <[email protected]>
  • Loading branch information
jinlinGuan committed Nov 20, 2024
1 parent 32807ec commit ba55863
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions common/echo_api_constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ const (
ApiNotificationByIdEchoRoute = ApiNotificationRoute + "/" + Id + "/:" + Id
ApiNotificationByStatusEchoRoute = ApiNotificationRoute + "/" + Status + "/:" + Status
ApiNotificationBySubscriptionNameEchoRoute = ApiNotificationRoute + "/" + Subscription + "/" + Name + "/:" + Name
ApiNotificationByIdsRoute = ApiNotificationRoute + "/" + Ids + "/:" + Ids
ApiNotificationAcknowledgeByIdsRoute = ApiNotificationRoute + "/" + Acknowledge + "/" + Ids + "/:" + Ids
ApiNotificationUnacknowledgeByIdsRoute = ApiNotificationRoute + "/" + Unacknowledge + "/" + Ids + "/:" + Ids

ApiTransmissionByIdEchoRoute = ApiTransmissionRoute + "/" + Id + "/:" + Id
ApiTransmissionByAgeEchoRoute = ApiTransmissionRoute + "/" + Age + "/:" + Age
Expand Down

0 comments on commit ba55863

Please sign in to comment.