You've already forked AstralRinth
forked from didirus/AstralRinth
* search patch for accurate loader/gv filtering * backup * basic search test * finished test * incomplete commit; backing up * Working multipat reroute backup * working rough draft v3 * most tests passing * works * search v2 conversion * added some tags.rs v2 conversions * Worked through warnings, unwraps, prints * refactors * new search test * version files changes fixes * redesign to revs * removed old caches * removed games * fmt clippy * merge conflicts * fmt, prepare * moved v2 routes over to v3 * fixes; tests passing * project type changes * moved files over * fmt, clippy, prepare, etc * loaders to loader_fields, added tests * fmt, clippy, prepare * fixed sorting bug * reversed back- wrong order for consistency * fmt; clippy; prepare --------- Co-authored-by: Jai A <jaiagr+gpg@pm.me>
52 lines
1.3 KiB
Rust
52 lines
1.3 KiB
Rust
pub use super::ApiError;
|
|
use crate::{auth::oauth, util::cors::default_cors};
|
|
use actix_web::{web, HttpResponse};
|
|
use serde_json::json;
|
|
|
|
pub mod analytics_get;
|
|
pub mod collections;
|
|
pub mod images;
|
|
pub mod moderation;
|
|
pub mod notifications;
|
|
pub mod organizations;
|
|
pub mod project_creation;
|
|
pub mod projects;
|
|
pub mod reports;
|
|
pub mod statistics;
|
|
pub mod tags;
|
|
pub mod teams;
|
|
pub mod threads;
|
|
pub mod users;
|
|
pub mod version_creation;
|
|
pub mod version_file;
|
|
pub mod versions;
|
|
|
|
pub mod oauth_clients;
|
|
|
|
pub fn config(cfg: &mut web::ServiceConfig) {
|
|
cfg.service(
|
|
web::scope("v3")
|
|
.wrap(default_cors())
|
|
.configure(analytics_get::config)
|
|
.configure(collections::config)
|
|
.configure(images::config)
|
|
.configure(organizations::config)
|
|
.configure(project_creation::config)
|
|
.configure(projects::config)
|
|
.configure(reports::config)
|
|
.configure(tags::config)
|
|
.configure(teams::config)
|
|
.configure(threads::config)
|
|
.configure(version_file::config)
|
|
.configure(versions::config)
|
|
.configure(oauth::config)
|
|
.configure(oauth_clients::config),
|
|
);
|
|
}
|
|
|
|
pub async fn hello_world() -> Result<HttpResponse, ApiError> {
|
|
Ok(HttpResponse::Ok().json(json!({
|
|
"hello": "world",
|
|
})))
|
|
}
|