diff --git a/docs/installation/auth/settings.md b/docs/installation/auth/settings.md index e7d3eeb6..6d1afdea 100644 --- a/docs/installation/auth/settings.md +++ b/docs/installation/auth/settings.md @@ -215,52 +215,6 @@ If `True`, add members to groups with their alliance name, prefixed with `Allian If `True`, add blues to groups with their corp name, prefixed with `Corp_` ### BLUE_ALLIANCE_GROUPS If `True`, add blues to groups with their alliance name, prefixed with `Alliance_` -## Alliance Service Setup -### ENABLE_AUTH_FORUM -Allow members of the owning corp or alliance to generate accounts on a Phpbb3 install. -### ENABLE_AUTH_JABBER -Allow members of the owning corp or alliance to generate accounts on an Openfire install. -### ENABLE_AUTH_MUMBLE -Allow members of the owning corp or alliance to generate accounts on a Mumble install. -### ENABLE_AUTH_IPBOARD -Allow members of the owning corp or alliance to generate accounts on an IPBoard install. -### ENABLE_AUTH_TEAMSPEAK3 -Allow members of the owning corp or alliance to generate accounts on a Teamspeak3 install. -### ENABLE_AUTH_DISCORD -Allow members of the owning corp or alliance to link accounts to a Discord server. -### ENABLE_AUTH_DISCOURSE -Allow members of the owning corp or alliance to generate accounts on a Discourse install -### ENABLE_AUTH_IPS4 -Allow members of the owning corp or alliance to generate accounts on a IPSuite4 install. -### ENABLE_AUTH_SMF -Allow members of the owning corp or alliance to generate accounts on a SMF install. -### ENABLE_AUTH_MARKET -Allow members of the owning corp or alliance to generate accounts on an alliance market install. -### ENABLE_AUTH_XENFORO -Allow members of the owning corp or alliance to generate accounts on a XenForo install. -## Blue Service Setup -### ENABLE_BLUE_FORUM -Allow blues of the owning corp or alliance to generate accounts on a Phpbb3 install. -### ENABLE_BLUE_JABBER -Allow blues of the owning corp or alliance to generate accounts on an Openfire install. -### ENABLE_BLUE_MUMBLE -Allow blues of the owning corp or alliance to generate accounts on a Mumble install. -### ENABLE_BLUE_IPBOARD -Allow blues of the owning corp or alliance to generate accounts on an IPBoard install. -### ENABLE_BLUE_TEAMSPEAK3 -Allow blues of the owning corp or alliance to generate accounts on a Teamspeak3 install. -### ENABLE_BLUE_DISCORD -Allow blues of the owning corp or alliance to link accounts to a Discord server. -### ENABLE_BLUE_DISCOURSE -Allow blues of the owning corp or alliance to generate accounts on a Discourse install. -### ENABLE_BLUE_IPS4 -Allow blues of the owning corp or alliance to generate accounts on an IPSuite4 install. -### ENABLE_BLUE_SMF -Allow blues of the owning corp or alliance to generate accounts on a SMF install. -### ENABLE_BLUE_MARKET -Allow blues of the owning corp or alliance to generate accounts on an alliance market install. -### ENABLE_BLUE_XENFORO -Allow blues of the owning corp or alliance to generate accounts on a XenForo install. ## Tenant Configuration Characters of any corp or alliance with their ID here will be treated as a member. ### CORP_IDS diff --git a/services/modules/discord/tasks.py b/services/modules/discord/tasks.py index 50a4a1ba..3acae4a1 100644 --- a/services/modules/discord/tasks.py +++ b/services/modules/discord/tasks.py @@ -121,7 +121,7 @@ class DiscordTasks: def update_all_nicknames(): logger.debug("Updating ALL discord nicknames") for discord_user in DiscordUser.objects.exclude(uid__exact=''): - DiscordTasks.update_nickname.delay(discord_user.user.user_id) + DiscordTasks.update_nickname.delay(discord_user.user.pk) @classmethod def disable(cls): diff --git a/services/modules/discord/templates/registered/discord_service_ctrl.html b/services/modules/discord/templates/registered/discord_service_ctrl.html index 7b7fa34b..a2449910 100644 --- a/services/modules/discord/templates/registered/discord_service_ctrl.html +++ b/services/modules/discord/templates/registered/discord_service_ctrl.html @@ -7,14 +7,14 @@
{% trans "Service" %} | {% trans "Username" %} | diff --git a/stock/templates/registered/services_ctrl.html b/stock/templates/registered/services_ctrl.html index 272cf101..f34f9a8e 100644 --- a/stock/templates/registered/services_ctrl.html +++ b/stock/templates/registered/services_ctrl.html @@ -7,23 +7,23 @@{% ifequal username "" %} {% if urls.auth_activate %} - + {% endif %} {% else %} {% if urls.auth_set_password %} - + {% endif %} {% if urls.auth_reset_password %} - + {% endif %} {% if urls.auth_deactivate %} - + {% endif %} |
---|