From dbc8919ec577a8ea8358d8537c40cc20aff8e636 Mon Sep 17 00:00:00 2001 From: duonganhthu43 Date: Wed, 20 Sep 2023 22:20:49 +0700 Subject: [PATCH] chore: add application name --- dozer-types/protos/cloud_notification.proto | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dozer-types/protos/cloud_notification.proto b/dozer-types/protos/cloud_notification.proto index 582e42481e..51ee5c37d4 100644 --- a/dozer-types/protos/cloud_notification.proto +++ b/dozer-types/protos/cloud_notification.proto @@ -6,10 +6,11 @@ message Notification { string id = 1; google.protobuf.Timestamp created_at = 2; string namespace = 3; - Level level = 4; - bool is_read = 5; + optional string app_name = 4; + Level level = 5; + bool is_read = 6; oneof kind { - PodNotification pod = 6; + PodNotification pod = 7; } }