-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.js
More file actions
26 lines (15 loc) · 716 Bytes
/
test.js
File metadata and controls
26 lines (15 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// const Spr_Tasks = require('../DataBase/models/catalog_models/spr_task_model')
// const Spr_User = require('../DataBase/models/catalog_models/spr_user_model')
const Spr_Users = require("../DataBase/connecting_db")
const Profile_Devs = require("../DataBase/connecting_db")
// const Spr_Users = require("../DataBase/models/work_models/all_models")
// const Spr_Users = require("../DataBase/models/work_models/all_models")
module.exports.findUsers = async function(req, res){
// const users = await Spr_Users.findAll()
const user = await Spr_Users.findAll()
const prof = await Profile_Devs.findAll()
console.log(user)
res.status(200)
}
module.exports.create_p_test = async (req, res) => {
}