feat: use many to one relationship for categories in directus

This commit is contained in:
2026-03-05 18:56:44 -06:00
parent f4676d151f
commit e7c660c142
4 changed files with 13 additions and 13 deletions

View File

@@ -37,7 +37,7 @@ export type Post = {
title: string;
description: string;
tags: string[];
category: string;
category: Category;
selected: boolean;
published: boolean;
content: string;