()
| 12 | @api.route('/additional-tasks', methods=['GET']) |
| 13 | @restricted_access |
| 14 | def additionalTasks(): |
| 15 | return jsonify( additionalTasksManager().data ) |
| 16 | |
| 17 | @api.route('/additional-tasks', methods=['POST']) |
| 18 | @restricted_access |
nothing calls this directly
no test coverage detected