2025-09-22 20:35:13 +02:00
|
|
|
/*!
|
|
|
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
|
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
sync: true,
|
|
|
|
|
|
|
|
|
|
inputs: {
|
|
|
|
|
oidc: {
|
|
|
|
|
type: 'ref',
|
|
|
|
|
},
|
|
|
|
|
user: {
|
|
|
|
|
type: 'ref',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
fn(inputs) {
|
|
|
|
|
const data = {
|
|
|
|
|
oidc: inputs.oidc,
|
|
|
|
|
version: sails.config.custom.version,
|
|
|
|
|
};
|
|
|
|
|
if (inputs.user && inputs.user.role === User.Roles.ADMIN) {
|
2025-12-08 21:25:13 +01:00
|
|
|
Object.assign(data, {
|
|
|
|
|
activeUsersLimit: sails.config.custom.activeUsersLimit,
|
|
|
|
|
customerPanelUrl: sails.config.custom.customerPanelUrl,
|
|
|
|
|
});
|
2025-09-22 20:35:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return data;
|
|
|
|
|
},
|
|
|
|
|
};
|