refactor: create album (#2555)

This commit is contained in:
Jason Rasmussen
2023-05-24 22:10:45 -04:00
committed by GitHub
parent 83df14d379
commit d827a6182b
16 changed files with 117 additions and 91 deletions

View File

@@ -4553,6 +4553,31 @@
"owner"
]
},
"CreateAlbumDto": {
"type": "object",
"properties": {
"albumName": {
"type": "string"
},
"sharedWithUserIds": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
}
},
"assetIds": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
}
}
},
"required": [
"albumName"
]
},
"APIKeyCreateDto": {
"type": "object",
"properties": {
@@ -6280,31 +6305,6 @@
"sharing"
]
},
"CreateAlbumDto": {
"type": "object",
"properties": {
"albumName": {
"type": "string"
},
"sharedWithUserIds": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
}
},
"assetIds": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
}
}
},
"required": [
"albumName"
]
},
"AddUsersDto": {
"type": "object",
"properties": {