WIP: servers and channels #9

Draft
radical wants to merge 28 commits from wip/messaging into main
2 changed files with 5 additions and 5 deletions
Showing only changes of commit cb22bd8026 - Show all commits

View file

@ -1,4 +1,4 @@
mod messages;
pub mod messages;
use actix_web::{get, web, Error, HttpRequest, HttpResponse};
use crate::{api::v1::auth::check_access_token, structs::{Channel, Member}, utils::get_auth_header, Data};

View file

@ -10,7 +10,7 @@ pub fn web() -> Scope {
.service(res)
.service(channels::response)
.service(channels::uuid::res)
.service(channels::uuid::messages::res)
}
#[get("/{uuid}")]