diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2023-03-26 21:50:41 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2023-03-26 21:50:41 +0200 |
commit | 89007ddb4f2b59c15ea773f877cf75c5e9ac714d (patch) | |
tree | 3afe8a448bb3491670f5842b51a3defeeee19061 /roles/gitea/templates | |
parent | 4663ced9b61a9b4c2259a86c147f0be9ceadcca4 (diff) | |
download | ansible_collection-89007ddb4f2b59c15ea773f877cf75c5e9ac714d.tar.gz |
gitea new options
Diffstat (limited to 'roles/gitea/templates')
-rw-r--r-- | roles/gitea/templates/app.ini.j2 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/roles/gitea/templates/app.ini.j2 b/roles/gitea/templates/app.ini.j2 index e3dd930..3be53b0 100644 --- a/roles/gitea/templates/app.ini.j2 +++ b/roles/gitea/templates/app.ini.j2 @@ -44,7 +44,7 @@ INTERNAL_TOKEN = {{ int_tok.content }} [service] DISABLE_REGISTRATION = true -REQUIRE_SIGNIN_VIEW = true +REQUIRE_SIGNIN_VIEW = {{ gitea.require_signing_view }} ENABLE_NOTIFY_MAIL = {{ gitea.mail.enable }} @@ -79,3 +79,7 @@ PATH = [oauth2] ENABLE = false + +[actions] +ENABLED = {{ gitea.actions }} + |