-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(inao-pp-cem): dataverse check and template-api-module adjustmen…
…ts (#16958) * feat: add in the dataverse check before you enter the application * feat: adjust cemetery client * chore: remove console.dir * chore: remove unused imports * chore: remove console.log * chore: remove unused imports * chore: change codeowners of inao client * fix: remove delegation check once you are in the application * chore: remove fakeUser, not used any more * chore: add documentation * chore: edit not allowed permissions * feat: change financial-statements codeowner to Norda by Programm request --------- Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
- Loading branch information
1 parent
9997637
commit 20768c5
Showing
22 changed files
with
170 additions
and
170 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 0 additions & 43 deletions
43
...lication/templates/inao/financial-statement-cemetery/src/fields/DelegationCheck/index.tsx
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
libs/application/templates/inao/financial-statement-cemetery/src/forms/notAllowed/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { buildForm } from '@island.is/application/core' | ||
import { notAllowedSection } from './notAllowedSection' | ||
import Logo from '../../components/Logo' | ||
|
||
export const notAllowedForm = buildForm({ | ||
id: 'notAllowedForm', | ||
title: '', | ||
logo: Logo, | ||
children: [notAllowedSection], | ||
}) |
17 changes: 17 additions & 0 deletions
17
...ion/templates/inao/financial-statement-cemetery/src/forms/notAllowed/notAllowedSection.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { | ||
buildDescriptionField, | ||
buildSection, | ||
} from '@island.is/application/core' | ||
import { m } from '../../lib/messages' | ||
|
||
export const notAllowedSection = buildSection({ | ||
id: 'notAllowedSection', | ||
title: '', | ||
children: [ | ||
buildDescriptionField({ | ||
id: 'notAllowedDescription', | ||
title: m.notAllowedTitle, | ||
description: m.notAllowedDescription, | ||
}), | ||
], | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,4 +34,5 @@ export enum States { | |
|
||
export enum Roles { | ||
APPLICANT = 'applicant', | ||
NOTALLOWED = 'notAllowed', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.