From 5c9b5ee78db88fe16b32807a81444d158078cbe3 Mon Sep 17 00:00:00 2001 From: frelodev Date: Sun, 8 Dec 2024 15:56:06 +0100 Subject: [PATCH] feat: Change RPCs from workspace name to workspace id --- proto/session.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proto/session.proto b/proto/session.proto index 39996c1..3385df2 100644 --- a/proto/session.proto +++ b/proto/session.proto @@ -20,7 +20,7 @@ service Session { // A message representing a request for specific workspace. message WorkspaceRequest { - // The name of the workspace. + // The workspace's id required string workspace = 1; } @@ -36,6 +36,6 @@ message WorkspaceList { message InviteRequest { // The user the invitation is for. required string user = 1; - // the workspace the invitation is for + // the workspace's id the invitation is for required string workspace = 2; }