Added public toggle to add note and made it consistent with edit note

This commit is contained in:
Keannu Christian Bernasol 2023-04-16 19:48:26 +08:00
parent cecc63eb7e
commit ed9715c63f
3 changed files with 79 additions and 54 deletions

View file

@ -59,6 +59,7 @@ export interface ActivationParams {
export interface AddNoteParams {
title: string;
content: string;
public: boolean;
}
export interface UpdateNoteParams {