cityssm/lottery-licence-manager

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

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { getOutstandingEvents } from "../../helpers/licencesDB/getOutstandingEvents.js";
export const handler = (request, response) => {
    const events = getOutstandingEvents(request.body, request.session);
    response.json(events);
};
export default handler;