changes in edit

master^2
Varun 8 months ago
parent 38eafcbad7
commit cca9ad28e2

@ -957,7 +957,7 @@ exports.createstaff = async (request, reply) => {
exports.editStaff = async (request, reply) => { exports.editStaff = async (request, reply) => {
try { try {
const { customerId, phone } = request.params; const { customerId, phone } = request.params;
const { name, password } = request.body; const { name, password,all_motor_access } = request.body;
const user = await User.findOne({ customerId, "staff.staff.phone": phone }); const user = await User.findOne({ customerId, "staff.staff.phone": phone });
if (!user) { if (!user) {

@ -890,7 +890,8 @@ fastify.route({
type: "object", type: "object",
properties: { properties: {
name: { type: "string" }, name: { type: "string" },
password: { type: "string" } password: { type: "string" },
all_motor_access:{type:"string"}
}, },
required: ["name", "password"] required: ["name", "password"]
} }

Loading…
Cancel
Save