You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
310 B
11 lines
310 B
use actix_web::{Error, get, web, HttpResponse};
|
|
use handlebars::Handlebars;
|
|
use serde_json::Value;
|
|
|
|
use crate::render_error;
|
|
|
|
#[get("/submit")]
|
|
pub async fn get(hb: web::Data<Handlebars<'_>>) -> Result<HttpResponse, Error> {
|
|
Ok(HttpResponse::Ok().body(render_error!(hb, hb.render("submit", &Value::Null))))
|
|
}
|