Ready payload on websocket, add friend by username + avatars.

This commit is contained in:
Paul Makles
2020-12-31 14:59:26 +00:00
parent cac21ce2b6
commit 7728768539
10 changed files with 55 additions and 41 deletions

View File

@@ -1,6 +1,7 @@
use rocket::Route;
mod add_friend;
mod get_avatar;
mod block_user;
mod fetch_dms;
mod fetch_relationship;
@@ -14,9 +15,12 @@ pub fn routes() -> Vec<Route> {
routes![
// User Information
fetch_user::req,
get_avatar::req,
// Direct Messaging
fetch_dms::req,
open_dm::req,
// Relationships
fetch_relationships::req,
fetch_relationship::req,