Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 561 Bytes

understanding_code.md

File metadata and controls

19 lines (17 loc) · 561 Bytes

Express Settings -

app.use('/static', express.static('static'));
app.use(busboy());
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));

Endpoints

app.get('/api/documents', handleCCDARequest);
app.get(`/${CLINIC_ID}/api/documents/?`, handleCCDATransfer);
app.post('/api/documents', handleUploadCCDA);
app.get('/AddAsset',AddAssetaudit);
app.get('/PatientCCDAUploadAudit',PatientCCDAUploadAudit);
app.get('/PatientAllCCDARequestAudit',PatientAllCCDARequestAudit);

todo: Function Hierarchy