Skip to content
Snippets Groups Projects
Verified Commit a84c9fd9 authored by Konstantin Tsabolov's avatar Konstantin Tsabolov
Browse files

chore(did-manager): fix DTO params

parent d3faa8c3
No related branches found
No related tags found
1 merge request!40End to end run preparation
import { ApiProperty } from '@nestjs/swagger';
import { IsString, IsArray } from 'class-validator';
import { IsString, IsArray, IsOptional } from 'class-validator';
export class RegisterFromSeedPayload {
@IsString()
......@@ -10,6 +10,7 @@ export class RegisterFromSeedPayload {
public seed: string;
@IsArray()
@IsOptional()
@ApiProperty({
description: 'Services to associate with DID',
example: [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment