1
0
Fork 0
mirror of synced 2024-11-16 14:15:35 -05:00

add auto_assign_org variable

This commit is contained in:
Simon Schneider 2018-08-28 10:06:15 +02:00
parent 96ae1af5e0
commit 2a0cf92a00
2 changed files with 2 additions and 1 deletions

View file

@ -136,7 +136,7 @@ allow_sign_up = {{ server.allow_sign_up|lower }}
allow_org_create = {{ server.allow_org_create|lower }} allow_org_create = {{ server.allow_org_create|lower }}
# Set to true to automatically assign new users to the default organization (id 1) # Set to true to automatically assign new users to the default organization (id 1)
;auto_assign_org = true auto_assign_org = {{ server.auto_assign_org|lower }}
# Default role new users will be automatically assigned (if disabled above is set to true) # Default role new users will be automatically assigned (if disabled above is set to true)
;auto_assign_org_role = Viewer ;auto_assign_org_role = Viewer

View file

@ -46,6 +46,7 @@ Debian:
password: admin password: admin
allow_sign_up: False allow_sign_up: False
allow_org_create: False allow_org_create: False
auto_assign_org: True
auto_assign_role: Viewer auto_assign_role: Viewer
dir: dir:
static: /usr/share/grafana/public static: /usr/share/grafana/public