Permettre de téléverser plusieurs fichiers à la fois dans admin-upload
#182
1 changed files with 7 additions and 6 deletions
|
@ -1,13 +1,15 @@
|
||||||
package apiresponse
|
package apiresponse
|
||||||
|
|
||||||
|
type DataDocument struct {
|
||||||
|
Key string
|
||||||
|
Size int64
|
||||||
|
}
|
||||||
|
|
||||||
type V1DocumentsPOST struct {
|
type V1DocumentsPOST struct {
|
||||||
Response
|
Response
|
||||||
Data struct {
|
Data struct {
|
||||||
Bucket string
|
Bucket string
|
||||||
Documents struct {
|
Documents []DataDocument
|
||||||
Key string
|
|
||||||
Size int64
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,8 +18,7 @@ type V1DocumentPOST struct {
|
||||||
Response
|
Response
|
||||||
Data struct {
|
Data struct {
|
||||||
Bucket string
|
Bucket string
|
||||||
Key string
|
DataDocument
|
||||||
Size int64
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue