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 IBoard {
id: number;
name: string;
description?: string;
slug?: string;
}
export default IBoard;