-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathadmin.controller.js
80 lines (75 loc) · 1.88 KB
/
admin.controller.js
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
const express = require("express");
const router = express.Router();
const adminService = require("../service/admin.service");
router.get("/:id", read);
router.get("/", readAll);
router.post("/deleted", deletedMember);
router.post("/", add);
router.put("/:id", update);
router.put("/update/:id", update1);
router.delete("/:id", remove);
router.get("/user/:_id", readByUser);
router.post("/user1/:_id", readByUser1);
router.get("/user2/:_id", readByUser2);
function readByUser(req, res, next) {
adminService
.readByUser(req)
.then((data) => res.send(data))
.catch((err) => next(err));
}
function readByUser2(req, res, next) {
adminService
.readByUser2(req)
.then((data) => res.send(data))
.catch((err) => next(err));
}
function readByUser1(req, res, next) {
adminService
.readByUser1(req)
.then((data) => res.send(data))
.catch((err) => next(err));
}
function add(req, res, next) {
console.log(req.body);
adminService
.add(req, res)
.then((data) => res.send(data))
.catch((err) => next(err));
}
function update(req, res, next) {
adminService
.update(req)
.then((data) => res.send(data))
.catch((err) => next(err));
}
function update1(req, res, next) {
adminService
.update1(req)
.then((data) => res.send(data))
.catch((err) => next(err));
}
function remove(req, res, next) {
adminService
.remove(req, res, next)
.then((data) => res.send(data))
.catch((err) => next(err));
}
function read(req, res, next) {
adminService
.read(req)
.then((data) => res.send(data))
.catch((err) => next(err));
}
function readAll(req, res, next) {
adminService
.readAll(req)
.then((data) => res.send(data))
.catch((err) => next(err));
}
function deletedMember(req, res, next) {
adminService
.deletedMember(req)
.then((data) => res.send(data))
.catch((err) => next(err));
}
module.exports = router;