This commit is contained in:
commit
97dc727b58
2 changed files with 11 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
use maud::{PreEscaped, html};
|
use maud::PreEscaped;
|
||||||
|
|
||||||
use super::User;
|
use super::User;
|
||||||
use crate::get_pg;
|
use crate::{get_pg, ui::prelude::script};
|
||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
|
|
||||||
pub trait CSRF {
|
pub trait CSRF {
|
||||||
|
@ -15,7 +15,10 @@ impl CSRF for User {
|
||||||
///
|
///
|
||||||
/// This is useful for htmx requests to update the CSRF token in place.
|
/// This is useful for htmx requests to update the CSRF token in place.
|
||||||
async fn update_csrf(&self) -> PreEscaped<String> {
|
async fn update_csrf(&self) -> PreEscaped<String> {
|
||||||
html! { script { (PreEscaped(format!("document.querySelectorAll('.csrf').forEach(element => {{ element.value = '{}'; }});", self.get_csrf().await))) }; }
|
script(&format!(
|
||||||
|
"document.querySelectorAll('.csrf').forEach(element => {{ element.value = '{}'; }});",
|
||||||
|
self.get_csrf().await
|
||||||
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get CSRF Token for the current session
|
/// Get CSRF Token for the current session
|
||||||
|
|
|
@ -14,6 +14,11 @@ pub mod ui;
|
||||||
|
|
||||||
// Postgres
|
// Postgres
|
||||||
|
|
||||||
|
// TODO : Background Jobs
|
||||||
|
// TODO : Refactor caching
|
||||||
|
// TODO : mail
|
||||||
|
// TODO : scheduled jobs
|
||||||
|
|
||||||
// TODO : IDEA
|
// TODO : IDEA
|
||||||
// more efficient table join using WHERE ANY instead of multiple SELECTs
|
// more efficient table join using WHERE ANY instead of multiple SELECTs
|
||||||
// map_tables(Vec<T>, Fn(&T) -> U) -> Vec<U>
|
// map_tables(Vec<T>, Fn(&T) -> U) -> Vec<U>
|
||||||
|
|
Loading…
Add table
Reference in a new issue