feat: add way to fetch and join invites from /invites/{id}

This commit is contained in:
Radical 2025-05-10 00:09:59 +02:00
parent c693e89853
commit 8935c2d496
3 changed files with 130 additions and 4 deletions

View file

@ -0,0 +1,9 @@
use actix_web::{web, Scope};
mod id;
pub fn web() -> Scope {
web::scope("/invites")
.service(id::get)
.service(id::join)
}