Friends page
See original GitHub issueShould be able to add friends from a user’s profile, but the friends page is where you accept requests and see you friends list.
Relevant protobuf definitions from api.proto:
syntax = "proto3";
package org.couchers.api.core;
import "google/protobuf/timestamp.proto";
import "google/protobuf/wrappers.proto";
import "google/protobuf/empty.proto";
service API {
...
rpc SendFriendRequest(SendFriendRequestReq) returns (google.protobuf.Empty);
rpc ListFriendRequests(google.protobuf.Empty) returns (ListFriendRequestsRes);
rpc ListFriends(google.protobuf.Empty) returns (ListFriendsRes);
rpc RespondFriendRequest(RespondFriendRequestReq) returns (google.protobuf.Empty);
rpc CancelFriendRequest(CancelFriendRequestReq) returns (google.protobuf.Empty);
...
}
}
...
message SendFriendRequestReq {
uint64 user_id = 1;
}
message FriendRequest {
uint64 friend_request_id = 1;
enum FriendRequestStatus {
// these are the only two states that a user will see
PENDING = 0;
ACCEPTED = 1;
}
FriendRequestStatus state = 2;
uint64 user_id = 3;
}
message RespondFriendRequestReq {
uint64 friend_request_id = 1;
bool accept = 2;
}
message CancelFriendRequestReq {
uint64 friend_request_id = 1;
}
message ListFriendRequestsRes {
repeated FriendRequest sent = 1;
repeated FriendRequest received = 2;
}
message ListFriendsRes {
repeated uint64 user_ids = 1;
}
...
To-do:
- SendFriendRequest
- implementation
- tests
- ListFriendRequests
- ListFriends
- RespondFriendRequest
- CancelFriendRequest
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Friends (@friends) • Instagram photos and videos
Friends. Official Friends Instagram account. Now streaming on @hbomax. linktr.ee/friends. 1,295 posts. 11.8M followers. 32 following.
Read more >Log into Facebook
Log into Facebook to start sharing and connecting with your friends, family, and people you know.
Read more >The Friendship Page ..for every friendship!
Celebrate friendship with the largest friendship site: friendship quotes, poetry, chat, pen-pals, philosophy, advice, songs and more!
Read more >The Original Friends Site
About the Friends Reunion! Tour TV Sites · Friends videos! || Other Friends items || Tour Manhattan "Friends" Sites!
Read more >What's The "Friends" Page On Snapchat? The New Feature ...
29, the app rolled out its new "Friends" page, which users are able to access when they swipe left from the initial camera...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I see, doesn’t look like there’s even a mid-fi design for this yet? Might have to roll along what it looks like on the alpha as a starting point
Isn’t this the design? https://couchers.invisionapp.com/console/share/2W1JUDHBZ7/483411816