Can you please add support for multiple files attachement at single http call?
put_attachment(Db, DocId, ListofX)
where ListofX would be list of tuple of {Content, AName, Length, ContentType}
Here Length is mere redundant as it is the size of the Content. I just borrowed from existing API.
Possible use cases,
Mutile file attachment from client, adds multiple photos in single http call using multipart
Item list - Single Image with multiple size for thumbnail, normal and or original etc
Can you please add support for multiple files attachement at single http call? put_attachment(Db, DocId, ListofX)
where ListofX would be list of tuple of {Content, AName, Length, ContentType} Here Length is mere redundant as it is the size of the Content. I just borrowed from existing API. Possible use cases,