Skip to content
Snippets Groups Projects
Commit 798326af authored by Hugo SUBTIL's avatar Hugo SUBTIL
Browse files

feat(consent): add new filtering field

parent 0dcde370
No related branches found
No related tags found
6 merge requests!96Deploy OpenShift v2,!95MEP fix liens undefined,!91MEP: removed Meilisearch,!79Fix: nginx unprivileged image,!77Back-office SGE before canary release,!74US878 feat(consent): add new filtering field
Pipeline #43465 passed
......@@ -103,6 +103,10 @@ const Consents: React.FC = () => {
field: 'city',
headerName: 'Ville',
},
{
field: 'safetyOnBoarding',
headerName: 'Secours',
},
{
field: 'startDate',
valueFormatter: dateFormatter,
......
......@@ -16,6 +16,7 @@ export interface ConsentEntity {
postalCode: string
inseeCode: string
city: string
safetyOnBoarding: boolean
}
export interface IConsentPagination
......
......@@ -90,6 +90,7 @@ export class ConsentService {
address: consentEntity.address,
postalCode: consentEntity.postalCode,
city: consentEntity.city,
safetyOnBoarding: consentEntity.safetyOnBoarding,
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment