You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[
{
id: number,
name: string,
files: Array with info of the files,
folders: [{
id: number,
name: string,
root: boolen,
folder: number
]
}
]
The API's answer should be:
[
{
id: number,
name: string,
files: Array with info of the files,
folders: [{
id: number,
name: string,
files: Array with info of the files,
folders: [
id: number,
name: string,
files: Array with info of the files,
folders: ... // more folders
]
},
{
// Same structure as above but with "shared-with-me" files
}
]
To do:
Fix problem with folders array,
Add "shared-with-me" structure
The text was updated successfully, but these errors were encountered:
Currently the API's answer is:
The API's answer should be:
To do:
The text was updated successfully, but these errors were encountered: