Skip to content

Commit

Permalink
Tilleggsinformasjon max 140 tegn
Browse files Browse the repository at this point in the history
  • Loading branch information
ebelegu committed Oct 2, 2024
1 parent 13423fa commit 9d99dc2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/src/main/resources/produsent.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -509,9 +509,9 @@ type Mutation {

"""
Dette feltet er frivillig.
Tilleggssinformasjon som vises under tittelen på en sak. Maks 1000 tegn
Tilleggssinformasjon som vises under tittelen på en sak. Maks 140 tegn
"""
tilleggsinformasjon: String @Validate @MaxLength(max: 1000) @NonIdentifying
tilleggsinformasjon: String @Validate @MaxLength(max: 140) @NonIdentifying

"""
Her oppgir dere en lenke som brukeren kan klikke på for å komme rett til saken.
Expand Down Expand Up @@ -624,9 +624,9 @@ type Mutation {
"""
Dette feltet er frivillig.
Her har dere mulighet til å vise virksomheten mer informasjon om saken.
Feltet er begrenset til 1000 tegn og kan ikke inneholde personnummer.
Feltet er begrenset til 140 tegn og kan ikke inneholde personnummer.
"""
tilleggsinformasjon: String @Validate @MaxLength(max: 1000) @NonIdentifying
tilleggsinformasjon: String @Validate @MaxLength(max: 140) @NonIdentifying
): TilleggsinformasjonSakResultat!


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class NySakTests : DescribeSpec({
}

val response12 = engine.nySak(
tilleggsinformasjon = "A".repeat(1001)
tilleggsinformasjon = "A".repeat(141)
)

it("should fail because too long tilleggsinformasjon"){
Expand Down

0 comments on commit 9d99dc2

Please sign in to comment.