14 lines
312 B
TypeScript
14 lines
312 B
TypeScript
import { mockPosts } from "@/lib/mock"
|
|
|
|
export function listPosts() {
|
|
return mockPosts
|
|
}
|
|
|
|
export function getPostById(postId: string) {
|
|
return mockPosts.find((post) => post.id === postId)
|
|
}
|
|
|
|
export function listPostsByAuthor(userId: string) {
|
|
return mockPosts.filter((post) => post.author.id === userId)
|
|
}
|