feat: separate friend request route

This commit is contained in:
Paul Makles
2022-06-09 17:02:01 +01:00
parent d069acd5a5
commit cb2e6fb2f7
7 changed files with 56 additions and 12 deletions

View File

@@ -13,6 +13,7 @@ mod find_mutual;
mod get_default_avatar;
mod open_dm;
mod remove_friend;
mod send_friend_request;
mod unblock_user;
pub fn routes() -> (Vec<Route>, OpenApi) {
@@ -33,5 +34,6 @@ pub fn routes() -> (Vec<Route>, OpenApi) {
remove_friend::req,
block_user::req,
unblock_user::req,
send_friend_request::req,
]
}