From 3e00dd086128821d913d4a990ff34ae93835bb41 Mon Sep 17 00:00:00 2001 From: Benjamin Loison <12752145+Benjamin-Loison@users.noreply.github.com> Date: Sun, 15 Sep 2024 19:39:47 +0200 Subject: [PATCH] #300: Use a single `.proto` for `community` poll authentication --- proto/prototypes/browse.proto | 4 +++- proto/prototypes/sub_browse.proto | 5 ----- 2 files changed, 3 insertions(+), 6 deletions(-) delete mode 100644 proto/prototypes/sub_browse.proto diff --git a/proto/prototypes/browse.proto b/proto/prototypes/browse.proto index adbd937..6bcc4b4 100644 --- a/proto/prototypes/browse.proto +++ b/proto/prototypes/browse.proto @@ -1,6 +1,8 @@ syntax = "proto3"; -import "sub_browse.proto"; +message SubBrowse { + string postId = 22; +} message Browse { string endpoint = 2; diff --git a/proto/prototypes/sub_browse.proto b/proto/prototypes/sub_browse.proto deleted file mode 100644 index 8a10bef..0000000 --- a/proto/prototypes/sub_browse.proto +++ /dev/null @@ -1,5 +0,0 @@ -syntax = "proto3"; - -message SubBrowse { - string postId = 22; -}