Skip to content

Commit

Permalink
Add enumeration for service unit IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
juho-kettunen-nc committed Nov 7, 2024
1 parent 761ddcb commit 5d5812a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/serviceUnits/enums.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/**
* Expected IDs of the ServiceUnit model in fixtures and database.
*
* In Finnish: Palvelukokonaisuuden tunniste
*
* - MAKE = Maaomaisuuden kehittäminen ja tontit
* - AKV = Alueiden käyttö ja valvonta
* - KUVA_LIPA = Kulttuuri ja vapaa-aika / Liikuntapalvelut
* - KUVA_UPA = Kulttuuri ja vapaa-aika / Ulkoilupalvelut
* - KUVA_NUP = Kulttuuri ja vapaa-aika / Nuorisopalvelut
* @readonly
* @type {{}}
*/
export const ServiceUnitIds = {
MAKE: 1,
AKV: 2,
KUVA_LIPA: 3,
KUVA_UPA: 4,
KUVA_NUP: 5
}

0 comments on commit 5d5812a

Please sign in to comment.