Get type names from database
()
| 54 | |
| 55 | @bp.route('/types', methods=['GET']) |
| 56 | def get_types(): |
| 57 | """ |
| 58 | Get type names from database |
| 59 | """ |
| 60 | type_names = get_type_names() |
| 61 | return make_response(jsonify({"type_names": type_names}), 200) |
| 62 | |
| 63 | |
| 64 | @bp.route('/get_types_metadata', methods=['POST']) |
nothing calls this directly
no test coverage detected