Skip to content

Commit

Permalink
Merge pull request #1857 from navikt/artikkel_inkludering
Browse files Browse the repository at this point in the history
legg til ny artikkel on inkludering
  • Loading branch information
kenglxn committed Aug 21, 2024
2 parents 6b5c2bc + d0daa23 commit 61f1786
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/Pages/Artikkel/Artikkel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,15 @@ type Artikkel = {
tilgangssjekk: (valgtOrganisasjon: OrganisasjonInfo) => boolean;
};

const artikler: Record<string, Artikkel> = {};
const artikler: Record<string, Artikkel> = {
saferoad_ansetter_ved_hjelp_av_nav: {
lenketittel: '',
lenketekst: '',
tittel: '– Vi liker ikke å snakke om «inkludering»',
objectName: 'saferoad_ansetter_ved_hjelp_av_nav.html',
tilgangssjekk: (valgtOrganisasjon: OrganisasjonInfo) => false,
},
};

export const Artikler = () => {
const { valgtOrganisasjon } = useContext(OrganisasjonsDetaljerContext);
Expand Down

0 comments on commit 61f1786

Please sign in to comment.