Standardize DB interfaces with dependency tracking comments and clean up legacy location.reload() arguments
This commit is contained in:
@@ -5,7 +5,13 @@ import type { key_val } from '$lib/stores/ae_stores';
|
||||
// li = list
|
||||
// kv = key value list
|
||||
|
||||
// Updated 2024-11-13
|
||||
/**
|
||||
* Post - A bulletin board post
|
||||
* Related Files:
|
||||
* - src/lib/ae_posts/ae_posts__post.ts (API)
|
||||
* - src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte (View)
|
||||
* - src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_li.svelte (Search List)
|
||||
*/
|
||||
export interface Post {
|
||||
id: string;
|
||||
// id_random: string;
|
||||
@@ -63,7 +69,13 @@ export interface Post {
|
||||
upload_complete?: boolean;
|
||||
}
|
||||
|
||||
// Updated 2024-11-13
|
||||
/**
|
||||
* Post_Comment - A comment on a bulletin board post
|
||||
* Related Files:
|
||||
* - src/lib/ae_posts/ae_posts__post_comment.ts (API)
|
||||
* - src/routes/idaa/(idaa)/bb/[post_id]/ae_idaa_comp__post_comment_obj_li.svelte (Comment List View)
|
||||
* - src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_comment_obj_id_edit.svelte (Edit View)
|
||||
*/
|
||||
export interface Post_Comment {
|
||||
id: string;
|
||||
// id_random: string;
|
||||
|
||||
Reference in New Issue
Block a user