mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 08:37:07 +00:00
11 lines
289 B
JavaScript
11 lines
289 B
JavaScript
const { allowedOperations } = require('../../../lib/db/project/organisations');
|
|
|
|
async function operations (req, res, next) {
|
|
if (req.user) {
|
|
req.user.operations = await allowedOperations(req.user?.organisations, req.params.project ?? null);
|
|
}
|
|
next();
|
|
}
|
|
|
|
module.exports = operations;
|