Add feed model, link items to feeds

This commit is contained in:
2023-05-07 21:25:22 -04:00
parent f30be5f451
commit b2a5bf5882
10 changed files with 188 additions and 16 deletions

19
src/handlers/feed.rs Normal file
View File

@@ -0,0 +1,19 @@
use axum::{
extract::{Path, State},
Json,
};
use sqlx::PgPool;
use crate::error::Error;
use crate::models::feed::{create_feed, get_feed, CreateFeed, Feed};
pub async fn get(State(pool): State<PgPool>, Path(id): Path<i32>) -> Result<Json<Feed>, Error> {
Ok(Json(get_feed(pool, id).await?))
}
pub async fn post(
State(pool): State<PgPool>,
Json(payload): Json<CreateFeed>,
) -> Result<Json<Feed>, Error> {
Ok(Json(create_feed(pool, payload).await?))
}