Allow everyone to access project configuration.

This is necessary as it is requested by various parts of the
frontend.

Consider more granular access control.
This commit is contained in:
D. Berge
2023-09-14 13:17:28 +02:00
parent dc4b9002fe
commit ebcfc7df47

View File

@@ -100,8 +100,8 @@ app.map({
get: [ mw.project.summary.get ],
},
'/project/:project/configuration': {
get: [ mw.auth.access.write, mw.project.configuration.get ], // Get project configuration
patch: [ mw.auth.access.write, mw.project.configuration.patch ], // Modify project configuration
get: [ mw.project.configuration.get ], // Get project configuration
},
/*