mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 05:09:43 +02:00
16 lines
243 B
JavaScript
16 lines
243 B
JavaScript
module.exports = {
|
|
sync: true,
|
|
|
|
inputs: {
|
|
response: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
fn(inputs) {
|
|
inputs.response.clearCookie('httpOnlyToken', {
|
|
path: sails.config.custom.baseUrlPath,
|
|
});
|
|
},
|
|
};
|