working on document management

This commit is contained in:
2025-09-29 08:35:28 +02:00
parent a812fc674b
commit 1c6fa4ceb0

View File

@@ -62,7 +62,7 @@ public class FileModule extends BaseHandler implements FileService {
case COMPANY -> getCompanyFiles(path, ex, user.get());
case PROJECT -> getProjectFiles(path, ex, user.get());
case USER -> getUserFiles(path, ex, user.get());
case null, default -> super.doGet(path,ex);
case null, default -> throw UmbrellaException.notFound("invalid location: {0}", head);
};
} catch (UmbrellaException e) {
return send(ex,e);