Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get single drop endpoint implementation #32

Open
wants to merge 17 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
user prefix removed on userBio
Jonath-z committed May 17, 2022
commit 3889d74bcf8636c1bff33b415a004d473bef31a1
4 changes: 2 additions & 2 deletions src/modules/users/users.dto.ts
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ export class CreateUserDto {

@IsString()
@IsOptional()
userBio?: string;
bio?: string;
}

export class UserUpdateProfileDto {
@@ -58,7 +58,7 @@ export class UserUpdateProfileDto {

@IsString()
@IsOptional()
readonly userBio: string;
readonly bio: string;

@IsString()
@IsOptional()