/* ============================================================================ *\
|| ########################################################################## ||
|| # Auction Software Marketplace Release: 0.6 Build 0.7 # ||
|| # ---------------------------------------------------------------------- # ||
|| # License # 35YAHCNR9344X6O666C123AB # ||
|| # ---------------------------------------------------------------------- # ||
|| # Copyright ©2014–2021 Develop Scripts LLC. All Rights Reserved # ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ------------- AUCTION SOFTWARE IS NOT FREE SOFTWARE ------------------ # ||
|| # http://www.auctionsoftwaremarketplace.com|support@auctionsoftware.com # ||
|| # ---------------------------------------------------------------------- # ||
|| ########################################################################## ||
\* ============================================================================ */
const express = require('express')
const employeeCtrl = require('../controllers/employee')
const app = express.Router()
/**
* Route for Employees.
*
* @namespace adminside.employee
* @memberOf adminside
*/
app.post('/allemployees', employeeCtrl.allemployees)
app.post('/getSingleEmployee', employeeCtrl.getSingleUser)
app.post('/employeeAction', employeeCtrl.userAction)
app.post('/changeStatus', employeeCtrl.changeStatus)
app.post('/addemployees', employeeCtrl.employeeAdd)
app.post('/editemployees', employeeCtrl.employeeUpdate)
app.post('/getemployeeslist', employeeCtrl.employeeListing)
module.exports = app