Skip to content

Commit

Permalink
add deprecate massage
Browse files Browse the repository at this point in the history
  • Loading branch information
Xziy committed Jul 23, 2023
1 parent 1dfaadf commit 76ec8a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion models/MediaFile.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ declare let attributes: {
sortOrder: number;
/** Group relation */
group: Group[];
/** upload date */
/** upload date
* @deprecated (del in v2)
*/
uploadDate: string;
};
type attributes = typeof attributes;
Expand Down
4 changes: 3 additions & 1 deletion models/MediaFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ let attributes = {
collection: "group",
via: "images",
},
/** upload date */
/** upload date
* @deprecated (del in v2)
*/
uploadDate: "string",
};
let Model = {
Expand Down

0 comments on commit 76ec8a9

Please sign in to comment.