1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-08-12 19:00:26 +02:00
parent dee484871a
commit 06087a7800
3 changed files with 486 additions and 2 deletions

View file

@ -47,8 +47,11 @@ Config.JobPermissions = {
-- Wer kann Vorfälle melden
canReportIncidents = 'all', -- 'all' für alle, oder spezifische Jobs als Table
-- Who can manage license information
canManageLicenses = {'police'}, -- Add any other jobs that should be able to manage licenses
-- Wer kann Lizenz-Informationen verwalten
canManageLicenses = {'police'}, -- Add any other jobs that should be able to manage licenses
-- Wer kann allgemeine Informationen veröffentlichen
canPostGeneralInfo = {'police', 'ambulance'},
-- Spezielle Job Informationen
jobSpecificInfo = {
@ -102,3 +105,22 @@ Config.EventCategories = {
'Rennen',
'Sonstiges'
}
-- Allgemeine Informations-Kategorien
Config.GeneralInfoCategories = {
'Öffentliche Bekanntmachung',
'Sicherheitshinweis',
'Gesundheitshinweis',
'Verkehrsinformation',
'Bürgerinformation',
'Sonstiges'
}
-- Standard Lizenz-Typen
Config.DefaultLicenseTypes = {
'Führerschein',
'Waffenschein',
'Pilotenschein',
'Motorradführerschein',
'Bootslizenz'
}