AppReports/lib/api/get-app.js

11 lines
227 B
JavaScript
Raw Normal View History

2020-08-16 11:48:06 +02:00
'use strict';
const db = require ('../db');
const { http } = require ('@sapphirecode/consts');
module.exports = async (req, res) => {
const apps = await db.app.get_all ();
res.status (http.status_ok)
.json (apps);
};