mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 13:19:44 +02:00
17 lines
243 B
JavaScript
17 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,
|
||
|
});
|
||
|
},
|
||
|
};
|