From 7f5a3bc5ab10834f4d5761f04b8bba359a29f03c Mon Sep 17 00:00:00 2001 From: CeerDecy <79098669+CeerDecy@users.noreply.github.com> Date: Wed, 31 Jan 2024 17:28:24 +0800 Subject: [PATCH] feat: add scopeId for notifygroup proto (#6263) * feat: add scopeId for notifygroup proto * feat: change scopeId to scopeID --- api/proto/msp/apm/notifygroup/notifygroup.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/proto/msp/apm/notifygroup/notifygroup.proto b/api/proto/msp/apm/notifygroup/notifygroup.proto index 7b0b9f5d70c..11fb4bdd10e 100644 --- a/api/proto/msp/apm/notifygroup/notifygroup.proto +++ b/api/proto/msp/apm/notifygroup/notifygroup.proto @@ -149,6 +149,7 @@ message UpdateNotifyGroupRequest { string name = 2; repeated NotifyTarget targets = 3; int64 groupID = 4; + string scopeID = 5; } message UpdateNotifyGroupResponse { @@ -157,6 +158,7 @@ message UpdateNotifyGroupResponse { message GetNotifyGroupDetailRequest { int64 groupID = 1; + string scopeID = 2; } message GetNotifyGroupDetailResponse { @@ -185,6 +187,7 @@ message NotifyUser { message DeleteNotifyGroupRequest { int64 groupID = 1; + string scopeID = 2; } message DeleteNotifyGroupResponse {