travopti/backend/models/getCountries.js
Timo John 3f0ce4cb4b Matched getRegions to API Specification
Matched getRegionsByID to API Specification
2020-06-16 23:17:44 +02:00

11 lines
261 B
JavaScript

module.exports = async (dbConn) => {
const countries = await dbConn.query(
`SELECT countries.id AS country_id,
countries.country AS name,
countries.description
FROM countries`
);
return countries;
};