Skip to content

Commit

Permalink
Merge pull request #953 from jinlinGuan/issue-951
Browse files Browse the repository at this point in the history
feat: Add new API routes for notifications
  • Loading branch information
cloudxxx8 authored Nov 20, 2024
2 parents 32807ec + ba55863 commit 3c1c392
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 3c1c392

Please sign in to comment.