mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
Add slugs for Posts, Boards and OAuths (#321)
This commit is contained in:
committed by
GitHub
parent
e887bca9cf
commit
09fb156a4e
@@ -2,6 +2,7 @@ interface IBoardJSON {
|
||||
id: number;
|
||||
name: string;
|
||||
description?: string;
|
||||
slug?: string;
|
||||
}
|
||||
|
||||
export default IBoardJSON;
|
||||
@@ -1,6 +1,7 @@
|
||||
interface IPostJSON {
|
||||
id: number;
|
||||
title: string;
|
||||
slug?: string;
|
||||
description?: string;
|
||||
board_id: number;
|
||||
post_status_id?: number;
|
||||
|
||||
Reference in New Issue
Block a user