update rss for new api

This commit is contained in:
Adam Matthiesen 2024-01-23 17:30:01 -08:00
parent 6feeebbf36
commit d01b5294a2
2 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
{
"name": "@matthiesenxyz/astro-ghostcms",
"description": "Astro GhostCMS integration to allow easier importing of GhostCMS Content",
"version": "3.0.3",
"version": "3.0.4",
"homepage": "https://astro-ghostcms.xyz/",
"type": "module",
"license": "MIT",

View File

@ -1,10 +1,10 @@
import rss from "@astrojs/rss";
import { getGhostPosts, getGhostSettings } from '../api_old';
import { getPosts, getSettings } from '../api';
import invariant from "tiny-invariant";
export async function GET(context) {
const posts = await getGhostPosts();
const settings = await getGhostSettings();
const posts = await getPosts();
const settings = await getSettings();
invariant(settings, "Settings not found");
const title = settings.title;
const description = settings.description;
@ -16,7 +16,7 @@ export async function GET(context) {
title: post.title,
pubDate: post.published_at,
description: post.excerpt,
link: `/blog/${post.slug}/`,
link: `/${post.slug}/`,
})),
});
}