-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding change Owner -only for the owner-
- Loading branch information
Ayoub Essabiry
authored and
Ayoub Essabiry
committed
Oct 13, 2023
1 parent
eba62bb
commit 14e2c57
Showing
3 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// import { ApiProperty } from '@nestjs/swagger'; | ||
import { | ||
IsNotEmpty, | ||
IsString, | ||
} from 'class-validator'; | ||
|
||
export class ChangeOwnerDto{ | ||
// @ApiProperty() | ||
@IsNotEmpty() | ||
@IsString() | ||
roomId: string; | ||
@IsNotEmpty() | ||
@IsString() | ||
NewOwnerId: string; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters