Add slugs for Posts, Boards and OAuths (#321)

This commit is contained in:
Riccardo Graziosi
2024-04-05 18:23:31 +02:00
committed by GitHub
parent e887bca9cf
commit 09fb156a4e
30 changed files with 262 additions and 25 deletions

View File

@@ -2,6 +2,7 @@ interface IBoardJSON {
id: number;
name: string;
description?: string;
slug?: string;
}
export default IBoardJSON;

View File

@@ -1,6 +1,7 @@
interface IPostJSON {
id: number;
title: string;
slug?: string;
description?: string;
board_id: number;
post_status_id?: number;