mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-12 07:33:34 +01:00
Ports in game bug reporting from CM (#30376)
* adds the files doesn't even compile yet WIP * compiles now. axed some stuff we don't need * Update skin.dmf * It technically works * Adds in the stylesheet as well * makes approval work * Update tgui.bundle.js * changes url to para master * Makes apostrophes work * removes token read line * moves bug report verb to OOC.dm and changes its name to "Report a Bug" * Update bug_report.dm * Update tgui.bundle.js * Adds API token var to config. * adds a per ckey cooldown of 5 minutes for bug reports * tgui rebuild * rebuild tgui * Update tgui.bundle.js * review changes * better timeout check * changes example config to include the github token * Update tgui.bundle.js * tgui rebuild * add message when bug report list is empty and changes some warnings to info type messages * move round id and byond builds to additional details * moves initial user ref to UID. Fixes commit hash stuff adds TM list * Update tgui.bundle.js
This commit is contained in:
committed by
GitHub
parent
a9c3b6d242
commit
1abb121eb7
@@ -14,6 +14,8 @@
|
||||
var/api_host = null
|
||||
/// Internal API key
|
||||
var/api_key = null
|
||||
/// Github API token
|
||||
var/github_api_token = null
|
||||
/// List of IP addresses which bypass world topic rate limiting
|
||||
var/list/topic_ip_ratelimit_bypass = list()
|
||||
/// Server instance ID
|
||||
@@ -45,6 +47,7 @@
|
||||
CONFIG_LOAD_STR(shutdown_shell_command, data["shutdown_shell_command"])
|
||||
CONFIG_LOAD_STR(api_host, data["api_host"])
|
||||
CONFIG_LOAD_STR(api_key, data["api_key"])
|
||||
CONFIG_LOAD_STR(github_api_token, data["github_api_token"])
|
||||
|
||||
CONFIG_LOAD_LIST(topic_ip_ratelimit_bypass, data["topic_ip_ratelimit_bypass"])
|
||||
|
||||
@@ -54,6 +57,7 @@
|
||||
CONFIG_LOAD_STR(override_map, data["override_map"])
|
||||
CONFIG_LOAD_STR(ytdlp_url, data["ytdlp_url"])
|
||||
|
||||
|
||||
// Load region overrides
|
||||
if(islist(data["regional_servers"]))
|
||||
region_map.Cut()
|
||||
|
||||
Reference in New Issue
Block a user