src/repo/dtos/generate-sbom.dto.ts
Properties |
|
| Public repos |
Type : string
|
Decorators :
@ApiProperty({description: 'A comma-delimited list of full-names of repositories', example: 'open-sauced/insights,open-sauced/ai', type: 'string'})
|
|
Defined in src/repo/dtos/generate-sbom.dto.ts:11
|
import { ApiProperty } from "@nestjs/swagger";
import { IsString } from "class-validator";
export class GenerateSBOMDto {
@ApiProperty({
description: "A comma-delimited list of full-names of repositories",
example: "open-sauced/insights,open-sauced/ai",
type: "string",
})
@IsString()
public repos: string;
}