adding ugly start to posts page

This commit is contained in:
Will Baumbach
2025-07-26 22:05:27 -05:00
parent 2fed2636ad
commit 717ec8ff6f
4 changed files with 13359 additions and 14902 deletions

14
app/models/postModel.ts Normal file
View File

@@ -0,0 +1,14 @@
export interface Post {
_id: string
notes: string
photo: string
status: StatusEnum
userID: string
}
export enum StatusEnum {
Created = "created",
Pending = "pending",
Denied = "denied",
Accepted = "accepted"
}