diff options
author | 2022-11-03 13:15:31 +0100 | |
---|---|---|
committer | 2022-11-03 13:15:31 +0100 | |
commit | f3fc040c2effd85afa91d94bd409fa016980056e (patch) | |
tree | 7e9c1f407183728c44fa18fa282215d640aa9d2e /internal/config/defaults.go | |
parent | [frontend] change bundler to skulk (#942) (diff) | |
download | gotosocial-f3fc040c2effd85afa91d94bd409fa016980056e.tar.xz |
[feature] Allow user to show instead of landing page on / (#922)
* configurable user instead of landing page
* rename DefaultUser to LandingPageUser
* code review changes and fix tests
* try to fix pipeline error
* code review changes
* code review changes
* code review changes
* remove unnecessary line
Diffstat (limited to 'internal/config/defaults.go')
-rw-r--r-- | internal/config/defaults.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/config/defaults.go b/internal/config/defaults.go index 7a2b806f8..37ca5e31d 100644 --- a/internal/config/defaults.go +++ b/internal/config/defaults.go @@ -26,6 +26,7 @@ var Defaults = Configuration{ LogLevel: "info", LogDbQueries: false, ApplicationName: "gotosocial", + LandingPageUser: "", ConfigPath: "", Host: "", AccountDomain: "", |