feat: add way to fetch and join invites from /invites/{id}
This commit is contained in:
parent
c693e89853
commit
8935c2d496
3 changed files with 130 additions and 4 deletions
9
src/api/v1/invites/mod.rs
Normal file
9
src/api/v1/invites/mod.rs
Normal 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)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue