diff --git a/CHANGELOG.md b/CHANGELOG.md index b027b92..ceb523a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v3.7.9 +## 05/15/2024 + +1. [](#improved) + * Added default `site_host:` entry to `login.yaml` configuration file + # v3.7.8.1 ## 04/19/2024 diff --git a/blueprints.yaml b/blueprints.yaml index 477d6b6..4702e04 100644 --- a/blueprints.yaml +++ b/blueprints.yaml @@ -1,7 +1,7 @@ name: Login slug: login type: plugin -version: 3.7.8.1 +version: 3.7.9 testing: false description: Enables user authentication and login screen. icon: sign-in diff --git a/login.yaml b/login.yaml index 8f546c4..eefd4ce 100644 --- a/login.yaml +++ b/login.yaml @@ -4,6 +4,7 @@ redirect_to_login: false # If you try to access a page you do redirect_after_login: false # Path to redirect to after a successful login redirect_after_logout: true # Path to redirect to after a successful logout session_user_sync: false # Sync session user with changes in stored user file +site_host: # Site host to use for email links. Enhances security by ensuring links are to the correct host (e.g. https://foo.com) route: '/login' # Specific route for Login page (default is '/login') route_after_login: '/' # Route to go to after login if enabled