feat: rename 3Nodes to Mycelium Nodes across codebase and documentation

This commit is contained in:
mik-tf
2025-09-06 22:21:15 -04:00
parent add1136a89
commit 202a0fd622
19 changed files with 34 additions and 34 deletions

View File

@@ -57,13 +57,13 @@ impl DocsController {
render_template(&tmpl, "docs/getting_started.html", &ctx)
}
/// Renders the 3Nodes documentation page
pub async fn three_nodes(tmpl: web::Data<Tera>, session: Session) -> Result<impl Responder> {
/// Renders the Mycelium Nodes documentation page
pub async fn mycelium_nodes(tmpl: web::Data<Tera>, session: Session) -> Result<impl Responder> {
let mut ctx = crate::models::builders::ContextBuilder::new()
.active_page("docs")
.build();
ctx.insert("active_section", "3nodes");
ctx.insert("active_section", "mycelium_nodes");
let config = get_app_config();
ctx.insert("gitea_enabled", &config.is_gitea_enabled());
@@ -75,7 +75,7 @@ impl DocsController {
}
}
render_template(&tmpl, "docs/3nodes.html", &ctx)
render_template(&tmpl, "docs/mycelium_nodes.html", &ctx)
}
/// Renders the compute resources documentation page