- Introduced support for nested comment replies in both frontend and backend. - Added comment liking and unliking features, including like count and "isLiked" state tracking. - Updated database schema with `parentId` and new `comment_likes` table. - Enhanced UI for threaded comments and implemented display of like counts and reply actions. - Refactored APIs and repositories to support replies, likes, and enriched comment data.
15 lines
384 B
TypeScript
15 lines
384 B
TypeScript
export * from "./api_keys";
|
|
export * from "./audit_logs";
|
|
export * from "./categories";
|
|
export * from "./comment_likes";
|
|
export * from "./comments";
|
|
export * from "./content";
|
|
export * from "./favorites";
|
|
export * from "./messages";
|
|
export * from "./pgp";
|
|
export * from "./rbac";
|
|
export * from "./reports";
|
|
export * from "./sessions";
|
|
export * from "./tags";
|
|
export * from "./users";
|