cityssm/lottery-licence-manager

View on GitHub
handlers/events-post/doGetPastBankInformation.js

Summary

Maintainability
A
0 mins
Test Coverage
D
66%
import { getPastEventBankingInformation } from "../../helpers/licencesDB/getPastEventBankingInformation.js";
export const handler = (request, response) => {
    const bankInfoList = getPastEventBankingInformation(request.body.licenceID);
    response.json(bankInfoList);
};
export default handler;