Files
VOREStation/code/controllers/configuration/entries/vorestation.dm
T
Selis 355c8ca5f0 DMAPI Update (#17935)
* DMAPI Update

* Fix

* More changes

* InitTgs

* .

* css

* urg

* fix that

* some linux fixes

* .

* .

* .

* update

* .

* pref fixing

* .

* those are already sent

* .

* .

* .

* fully off

* fix that

* New classes & Format

* make this nicer

* CSS Edits

* .

* eh use switch

* .

* Update client procs.dm

* Hard restart counter

* Improved Staffwho style

---------

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
2025-07-02 22:21:14 +02:00

60 lines
1.6 KiB
Plaintext

/// For configuring if the important_items survive digestion
/datum/config_entry/flag/items_survive_digestion
default = TRUE
/datum/config_entry/number/register_server_port
default = null
min_val = 0
max_val = 65535
protection = CONFIG_ENTRY_LOCKED | CONFIG_ENTRY_HIDDEN
/datum/config_entry/flag/time_off
default = FALSE
protection = CONFIG_ENTRY_LOCKED
/datum/config_entry/flag/pto_job_change
default = FALSE
protection = CONFIG_ENTRY_LOCKED
/// Unlimited by default
/datum/config_entry/number/limit_interns
default = -1
min_val = -1
protection = CONFIG_ENTRY_LOCKED
/// Unlimited by default
/datum/config_entry/number/limit_visitors
default = -1
min_val = -1
protection = CONFIG_ENTRY_LOCKED
/// Hours
/datum/config_entry/number/pto_cap
default = 100
protection = CONFIG_ENTRY_LOCKED
/datum/config_entry/flag/require_flavor
default = FALSE
protection = CONFIG_ENTRY_LOCKED
/// API key for ipqualityscore.com
/datum/config_entry/string/ipqualityscore_apikey
protection = CONFIG_ENTRY_LOCKED | CONFIG_ENTRY_HIDDEN
/datum/config_entry/flag/use_playtime_restriction_for_jobs
default = FALSE
protection = CONFIG_ENTRY_LOCKED
/// URL of the webhook for sending announcements/faxes to discord chat.
/datum/config_entry/string/chat_webhook_url
protection = CONFIG_ENTRY_LOCKED | CONFIG_ENTRY_HIDDEN
/// Shared secret for authenticating to the chat webhook
/datum/config_entry/string/chat_webhook_key
protection = CONFIG_ENTRY_LOCKED | CONFIG_ENTRY_HIDDEN
/// Directory in which to write exported fax HTML files.
/datum/config_entry/string/fax_export_dir
default = "data/faxes"
protection = CONFIG_ENTRY_LOCKED