Skip to content

Commit

Permalink
Add missing readonly JC-674
Browse files Browse the repository at this point in the history
  • Loading branch information
manpham-saritasa committed Sep 7, 2024
1 parent cb995c2 commit b96cec0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libs/core/dtos/registration.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
export type RegistrationDto = {

/** Email. */
email: string;
readonly email: string;

/** First name. */
first_name: string;
readonly first_name: string;

/** Last name. */
last_name: string;
readonly last_name: string;

/** Password. */
password: string;
readonly password: string;
};

0 comments on commit b96cec0

Please sign in to comment.