config: rename some sections

removing redundant words from section title for those now in groups.
This commit is contained in:
Harvey Tindall
2025-11-27 19:50:32 +00:00
parent d90617c027
commit 787d0e7b4c
2 changed files with 6 additions and 5 deletions

View File

@@ -31,7 +31,7 @@ groups:
- section: mailgun - section: mailgun
- section: email_confirmation - section: email_confirmation
- group: chatbots - group: chatbots
name: "Chat bots" name: "Chatbots"
description: "Options for messaging through chat services." description: "Options for messaging through chat services."
members: members:
- section: discord - section: discord
@@ -837,7 +837,7 @@ sections:
description: Go over to the accounts tab, select your user (ensuring you've assigned it an email address) and send yourself an announcement. description: Go over to the accounts tab, select your user (ensuring you've assigned it an email address) and send yourself an announcement.
- section: mailgun - section: mailgun
meta: meta:
name: Mailgun (Email) name: Mailgun
description: Mailgun API connection settings description: Mailgun API connection settings
depends_true: email|method depends_true: email|method
settings: settings:
@@ -851,7 +851,7 @@ sections:
value: your api key value: your api key
- section: smtp - section: smtp
meta: meta:
name: SMTP (Email) name: SMTP
description: SMTP Server connection settings. description: SMTP Server connection settings.
depends_true: email|method depends_true: email|method
settings: settings:
@@ -1333,7 +1333,7 @@ sections:
description: Path to user creation notification email in plaintext. description: Path to user creation notification email in plaintext.
- section: ombi - section: ombi
meta: meta:
name: Ombi Integration name: Ombi
description: Connect to Ombi to automatically create both Ombi and Jellyfin accounts description: Connect to Ombi to automatically create both Ombi and Jellyfin accounts
for new users. You'll need to add a ombi template to an existing User Profile for new users. You'll need to add a ombi template to an existing User Profile
for accounts to be created, which you can do by refreshing then checking Settings for accounts to be created, which you can do by refreshing then checking Settings
@@ -1362,7 +1362,7 @@ sections:
description: API Key. Get this from the first tab in Ombi settings. description: API Key. Get this from the first tab in Ombi settings.
- section: jellyseerr - section: jellyseerr
meta: meta:
name: Jellyseerr Integration name: Jellyseerr
description: Connect to Jellyseerr to automatically trigger the import of users description: Connect to Jellyseerr to automatically trigger the import of users
on account creation, and to automatically link contact methods (email, discord on account creation, and to automatically link contact methods (email, discord
and telegram). A template must be added to a User Profile for accounts to be and telegram). A template must be added to a User Profile for accounts to be

View File

@@ -67,6 +67,7 @@ func (app *appContext) getUserTokenLogin(gc *gin.Context) {
host := app.ExternalDomainNoPort(gc) host := app.ExternalDomainNoPort(gc)
uri := "/my" uri := "/my"
// FIXME: This seems like a bad idea? I think it's to deal with people having Reverse proxy subfolder/URL base set to /accounts. // FIXME: This seems like a bad idea? I think it's to deal with people having Reverse proxy subfolder/URL base set to /accounts.
// RESPONSE: Not sure when this was added but I think some changes to page stuff make it unnecessary.
// if strings.HasPrefix(gc.Request.RequestURI, PAGES.Base) { // if strings.HasPrefix(gc.Request.RequestURI, PAGES.Base) {
// uri = "/accounts/my" // uri = "/accounts/my"
// } // }