Skip to content
Snippets Groups Projects
Commit 27c5dcd6 authored by Lukáš Kratochvíl's avatar Lukáš Kratochvíl
Browse files

fix: nullable properties indication in Swagger docs

parent 3c9daef9
No related branches found
No related tags found
No related merge requests found
......@@ -17,5 +17,5 @@ export class DirectorEntity implements Director {
surname: string;
birthDate: Date;
birthDate: Date | null;
}
......@@ -19,7 +19,7 @@ export class MovieEntity implements Movie {
intro: string;
picture: string;
picture: string | null;
publishedAt: number;
......
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