-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add enumeration for service unit IDs
- Loading branch information
1 parent
761ddcb
commit 5d5812a
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
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,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 | ||
} |