feature/name-autocomplete #21

Merged
vbrandl merged 12 commits from feature/name-autocomplete into main 2024-07-30 19:22:57 +02:00
Showing only changes of commit fc0de8b7e0 - Show all commits

View File

@ -6,6 +6,7 @@ export function GET() {
const names = readdirSync(storagePath).filter((f) =>
statSync(`${storagePath}/${f}`).isDirectory()
);
names.sort()
return json(names);
}