Add apilog route and remove unused files
This commit is contained in:
11
consumerWebsite/functions/apilog.js
Normal file
11
consumerWebsite/functions/apilog.js
Normal file
@ -0,0 +1,11 @@
|
||||
const { api_log_Model } = require("../database/model/apiLogModel");
|
||||
const {Op} = require("sequelize");
|
||||
|
||||
async function getAllLog(){
|
||||
return await api_log_Model.findAll();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
module.exports = { getAllLog };
|
Reference in New Issue
Block a user