mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
33 lines
388 B
JavaScript
33 lines
388 B
JavaScript
|
|
import express from 'express';
|
|
|
|
export default {
|
|
|
|
|
|
router() {
|
|
const router = express.Router();
|
|
|
|
return router;
|
|
},
|
|
|
|
reconciliations: {
|
|
validation: [
|
|
|
|
],
|
|
async handler(req, res) {
|
|
|
|
},
|
|
},
|
|
|
|
reconciliation: {
|
|
validation: [
|
|
body('from_date'),
|
|
body('to_date'),
|
|
body('closing_balance'),
|
|
|
|
],
|
|
async handler(req, res) {
|
|
|
|
},
|
|
},
|
|
} |