MCPcopy Create free account
hub / github.com/CFBD/cfb-api / getFGEP

Function getFGEP

app/ppa/ppa.controller.js:192–202  ·  view source on GitHub ↗
(req, res)

Source from the content-addressed store, hash-verified

190 };
191
192 const getFGEP = async (req, res) => {
193 try {
194 let results = await service.getFGEP();
195 res.send(results);
196 } catch (err) {
197 Sentry.captureException(err);
198 res.status(500).send({
199 error: 'Something went wrong.'
200 });
201 }
202 };
203
204 return {
205 getPP,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected