-
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.
- Loading branch information
Ayoub Essabiry
authored and
Ayoub Essabiry
committed
Oct 13, 2023
1 parent
1c1f54e
commit f8a4942
Showing
4 changed files
with
47 additions
and
39 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 |
---|---|---|
@@ -1,17 +1,13 @@ | ||
import { ApiProperty } from '@nestjs/swagger'; | ||
import { | ||
IsNotEmpty, | ||
IsString, | ||
} from 'class-validator'; | ||
import { IsNotEmpty, IsString } from 'class-validator'; | ||
|
||
export class ChangeOwnerDto{ | ||
@ApiProperty() | ||
@IsNotEmpty() | ||
@IsString() | ||
roomId: string; | ||
@ApiProperty() | ||
@IsNotEmpty() | ||
@IsString() | ||
NewOwnerId: string; | ||
|
||
} | ||
export class ChangeOwnerDto { | ||
@ApiProperty() | ||
@IsNotEmpty() | ||
@IsString() | ||
roomId: string; | ||
@ApiProperty() | ||
@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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
import { ApiProperty } from "@nestjs/swagger"; | ||
import { IsNotEmpty, IsString } from "class-validator"; | ||
import { ApiProperty } from '@nestjs/swagger'; | ||
import { IsNotEmpty, IsString } from 'class-validator'; | ||
|
||
export class SetAdminDto { | ||
@ApiProperty() | ||
@IsNotEmpty() | ||
@IsString() | ||
roomId: string; | ||
@ApiProperty() | ||
@IsNotEmpty() | ||
@IsString() | ||
newAdmin: string; | ||
} | ||
@ApiProperty() | ||
@IsNotEmpty() | ||
@IsString() | ||
roomId: string; | ||
@ApiProperty() | ||
@IsNotEmpty() | ||
@IsString() | ||
newAdmin: 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