Fix workspace and profile picture upload (#13269)

This commit is contained in:
Charles Bochet
2025-07-17 21:28:51 +02:00
committed by GitHub
parent 7d49639ba6
commit 50bb30b0ab

View File

@ -64,6 +64,14 @@ const bootstrap = async () => {
}),
);
app.use(
'/metadata',
graphqlUploadExpress({
maxFieldSize: bytes(settings.storage.maxFileSize),
maxFiles: 10,
}),
);
// Inject the server url in the frontend page
generateFrontConfig();