fix naming on a function

This commit is contained in:
Adam Matthiesen 2024-01-23 17:47:03 -08:00
parent 42222839b6
commit a7cf1be323
2 changed files with 2 additions and 2 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.4",
"version": "3.0.5",
"homepage": "https://astro-ghostcms.xyz/",
"type": "module",
"license": "MIT",

View File

@ -13,7 +13,7 @@ let ghostApiKey = CONTENT_API_KEY;
let ghostUrl = CONTENT_API_URL;
const version = "v5.0";
export const getGhostAuthors = async () => {
export const getAllAuthors = async () => {
const api = new TSGhostContentAPI(ghostUrl, ghostApiKey, version);
const results = await api.authors
.browse()