You've already forked AstralRinth
forked from didirus/AstralRinth
Initial Auth Impl + More Caching (#647)
* Port redis to staging * redis cache on staging * add back legacy auth callback * Begin work on new auth flows * Finish all auth flows * Finish base session authentication * run prep + fix clippy * make compilation work
This commit is contained in:
@@ -1,6 +1,4 @@
|
||||
mod admin;
|
||||
mod auth;
|
||||
mod midas;
|
||||
mod moderation;
|
||||
mod notifications;
|
||||
mod pats;
|
||||
@@ -22,20 +20,26 @@ pub fn config(cfg: &mut actix_web::web::ServiceConfig) {
|
||||
cfg.service(
|
||||
actix_web::web::scope("v2")
|
||||
.configure(admin::config)
|
||||
.configure(auth::config)
|
||||
.configure(midas::config)
|
||||
.configure(crate::auth::config)
|
||||
.configure(moderation::config)
|
||||
.configure(notifications::config)
|
||||
.configure(pats::config)
|
||||
.configure(project_creation::config)
|
||||
// SHOULD CACHE
|
||||
.configure(projects::config)
|
||||
.configure(reports::config)
|
||||
// should cache in future
|
||||
.configure(statistics::config)
|
||||
// should cache in future
|
||||
.configure(tags::config)
|
||||
// should cache
|
||||
.configure(teams::config)
|
||||
.configure(threads::config)
|
||||
// should cache
|
||||
.configure(users::config)
|
||||
// should cache in future
|
||||
.configure(version_file::config)
|
||||
// SHOULD CACHE
|
||||
.configure(versions::config),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user