This commit is contained in:
parent
ec08eb71f6
commit
693ce67806
5 changed files with 33 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
use actix_web::web::{self, ServiceConfig};
|
||||
|
||||
mod class;
|
||||
mod group;
|
||||
mod project;
|
||||
mod template;
|
||||
|
|
21
crates/backend/src/controller/class.rs
Normal file
21
crates/backend/src/controller/class.rs
Normal file
|
@ -0,0 +1,21 @@
|
|||
use actix_web::{Responder, delete, get, post};
|
||||
|
||||
#[get("")]
|
||||
async fn get_classes() -> impl Responder {
|
||||
""
|
||||
}
|
||||
|
||||
#[get("/{id}")]
|
||||
async fn get_class() -> impl Responder {
|
||||
""
|
||||
}
|
||||
|
||||
#[post("")]
|
||||
async fn create_class() -> impl Responder {
|
||||
""
|
||||
}
|
||||
|
||||
#[delete("/{id}")]
|
||||
async fn delete_class() -> impl Responder {
|
||||
""
|
||||
}
|
|
@ -6,7 +6,7 @@ async fn get_groups() -> impl Responder {
|
|||
}
|
||||
|
||||
#[get("/{project}")]
|
||||
async fn get_projects_for_project() -> impl Responder {
|
||||
async fn get_groups_for_project() -> impl Responder {
|
||||
""
|
||||
}
|
||||
|
||||
|
|
|
@ -5,6 +5,11 @@ async fn get_templates() -> impl Responder {
|
|||
""
|
||||
}
|
||||
|
||||
#[get("/{id}")]
|
||||
async fn get_template() -> impl Responder {
|
||||
""
|
||||
}
|
||||
|
||||
#[post("")]
|
||||
async fn create_template() -> impl Responder {
|
||||
""
|
||||
|
|
|
@ -5,6 +5,11 @@ async fn get_users() -> impl Responder {
|
|||
""
|
||||
}
|
||||
|
||||
#[get("/{id}")]
|
||||
async fn get_class() -> impl Responder {
|
||||
""
|
||||
}
|
||||
|
||||
#[post("")]
|
||||
async fn create_user() -> impl Responder {
|
||||
""
|
||||
|
|
Loading…
Add table
Reference in a new issue