1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix: make archivedAt nullable (#7872)

This commit is contained in:
Mateusz Kwasniewski 2024-08-14 11:36:48 +02:00 committed by GitHub
parent b042afb7dd
commit cb6ba743ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -67,6 +67,7 @@ export const projectSchema = {
archivedAt: {
type: 'string',
format: 'date-time',
nullable: true,
description: 'When this project was archived.',
example: '2023-07-28T12:12:28Z',
},