-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from hwgilbert16/develop
v1.10.10 Release
- Loading branch information
Showing
26 changed files
with
966 additions
and
119 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { IsNotEmpty, IsString } from "class-validator"; | ||
import { ApiProperty } from "@nestjs/swagger"; | ||
|
||
export class QuizletExportParams { | ||
@ApiProperty({ | ||
description: "The ID of the set", | ||
example: "19b86873-8e88-427b-839b-df02f1b8d5d8" | ||
}) | ||
@IsString() | ||
@IsNotEmpty() | ||
setId: string; | ||
|
||
@ApiProperty({ | ||
description: "The character(s) to separate each side of a card", | ||
example: "[" | ||
}) | ||
@IsString() | ||
@IsNotEmpty() | ||
sideDiscriminator: string; | ||
|
||
@ApiProperty({ | ||
description: "The character(s) to separate cards", | ||
example: "[" | ||
}) | ||
@IsString() | ||
@IsNotEmpty() | ||
cardDiscriminator: 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
Oops, something went wrong.