diff options
author | 2022-06-03 15:40:38 +0200 | |
---|---|---|
committer | 2022-06-03 15:40:38 +0200 | |
commit | 327d3f001f1cc219c4a718edf23b976c29c19487 (patch) | |
tree | 7fbc505601461f22eeeea6e966b9df5a43b4cafc /internal/config/config.go | |
parent | [chore] Adds Issue templates to Github (#626) (diff) | |
download | gotosocial-327d3f001f1cc219c4a718edf23b976c29c19487.tar.xz |
[feature] Start adding advanced configuration options, starting with `samesite` (#628)
* fix incorrect port being used for db
* start adding advanced config flags
* use samesite lax by default
Diffstat (limited to 'internal/config/config.go')
-rw-r--r-- | internal/config/config.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/config/config.go b/internal/config/config.go index 431fbbe4d..573f2b3a2 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -114,6 +114,8 @@ type Configuration struct { AdminAccountEmail string `name:"email" usage:"the email address of this account"` AdminAccountPassword string `name:"password" usage:"the password to set for this account"` AdminTransPath string `name:"path" usage:"the path of the file to import from/export to"` + + AdvancedCookiesSamesite string `name:"advanced-cookies-samesite" usage:"'strict' or 'lax', see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite"` } // MarshalMap will marshal current Configuration into a map structure (useful for JSON). |