mirror of
https://github.com/plankanban/planka.git
synced 2025-12-16 17:23:21 +03:00
24 lines
648 B
JavaScript
24 lines
648 B
JavaScript
/*!
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
*/
|
|
|
|
const version = require('../version');
|
|
|
|
module.exports = {
|
|
definition: {
|
|
openapi: '3.0.0',
|
|
info: {
|
|
version,
|
|
title: 'PLANKA API',
|
|
description:
|
|
'API documentation for PLANKA - Real-time Collaborative Kanban Board Application',
|
|
license: {
|
|
name: 'Fair Use License',
|
|
url: 'https://github.com/plankanban/planka/blob/master/LICENSE.md',
|
|
},
|
|
},
|
|
},
|
|
apis: ['./api/controllers/**/*.js', './api/models/*.js', './api/responses/*.js'],
|
|
};
|