kassier-role #684

Merged
philipp merged 4 commits from kassier-role into staging 2024-08-19 11:24:09 +02:00
2 changed files with 6 additions and 1 deletions
Showing only changes of commit c41dc0853a - Show all commits

View File

@ -181,6 +181,7 @@ ORDER BY read_at DESC, created_at DESC;
}
pub(crate) async fn delete_by_link(db: &sqlx::Pool<Sqlite>, link: &str) {
let link = Some(link);
sqlx::query!("DELETE FROM notification WHERE link=?", link)
.execute(db)
.await

View File

@ -161,7 +161,11 @@ async fn blogpost_unpublished(
config: &State<Config>,
) -> String {
if blogpost.pw == &config.wordpress_key {
Notification::delete_by_link(&db, blogpost.article_url).await;
Notification::delete_by_link(
&db,
&urlencoding::decode(blogpost.article_url).expect("UTF-8"),
)
.await;
"ACK".into()
} else {
"WRONG pw".into()