From 0485f68cf936901bbfc0a5326dc8dedfc87501e2 Mon Sep 17 00:00:00 2001 From: Arvid Lunnemark Date: Fri, 24 Jun 2022 12:55:51 -0700 Subject: [PATCH] add story to sync friend request --- schema/daemon.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/schema/daemon.proto b/schema/daemon.proto index 7787a58..d78ce28 100644 --- a/schema/daemon.proto +++ b/schema/daemon.proto @@ -89,7 +89,9 @@ message GetPublicIDResponse { } message AddSyncFriendRequest { - FriendInfo friend_info = 1; + string unique_name = 1; + string display_name = 2; + string story = 3; // this is the story representing the public identifier } message AddSyncFriendResponse {}