mirror of
https://github.com/plankanban/planka.git
synced 2026-07-15 21:48:11 +03:00
20 lines
357 B
JavaScript
20 lines
357 B
JavaScript
/*!
|
|
* Copyright (c) 2025 PLANKA Software GmbH
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
*/
|
|
|
|
module.exports = {
|
|
exits: {
|
|
success: {
|
|
responseType: 'view',
|
|
viewTemplatePath: 'index',
|
|
},
|
|
},
|
|
|
|
fn() {
|
|
return {
|
|
basePath: sails.config.custom.baseUrlPath,
|
|
};
|
|
},
|
|
};
|