function getExportType()

in src/utilities.ts [47:56]


function getExportType(urlPath: string): ExportType {
    let exportType: ExportType = 'system';
    if (urlPath.includes('/Patient/')) {
        exportType = 'patient';
    }
    if (urlPath.includes('/Group/')) {
        exportType = 'group';
    }
    return exportType;
}