1
0

Edit CF indexer

This commit is contained in:
Jai A
2020-05-31 22:20:16 -07:00
parent 74f8f687cf
commit aa5505d693
4 changed files with 24 additions and 8 deletions

View File

@@ -6,7 +6,7 @@ pub async fn mod_editor_get(hb: web::Data<Handlebars<'_>>) -> HttpResponse {
let data = json!({
"name": "Handlebars"
});
let body = hb.render("mod_editor", &data).unwrap();
let body = hb.render("mod-page", &data).unwrap();
HttpResponse::Ok().body(body)
}