Просмотр исходного кода

Merge branch 'main' into feature/user-roles

Kristan Kenney 4 лет назад
Родитель
Сommit
63e5d90fad
2 измененных файлов с 8 добавлено и 6 удалено
  1. 4 3
      bin/v-add-web-domain-allow-users
  2. 4 3
      bin/v-delete-web-domain-allow-users

+ 4 - 3
bin/v-add-web-domain-allow-users

@@ -1,11 +1,12 @@
 #!/bin/bash
 #!/bin/bash
-# info: Alow other users create subdomains
+# info: Allow other users create subdomains
 # options: USER DOMAIN
 # options: USER DOMAIN
 # labels: web hestia
 # labels: web hestia
 #
 #
-# example: v-add-web-domain-allow-users
+# example: v-add-web-domain-allow-users admin admin.com
 #
 #
-# Disallow other users to create a new subdomain.
+# Bypass the rule check for Enforce subdomain ownership for a specific domain. 
+# Enforce subdomain ownership setting in /edit/server/ set to no will always overwrite this behaviour
 # eg: admin adds admin.com
 # eg: admin adds admin.com
 # user can create user.admin.com
 # user can create user.admin.com
 
 

+ 4 - 3
bin/v-delete-web-domain-allow-users

@@ -3,11 +3,12 @@
 # options: USER DOMAIN
 # options: USER DOMAIN
 # labels: web hestia
 # labels: web hestia
 #
 #
-# example: v-delete-web-domain-allow-users
+# example: v-delete-web-domain-allow-users admin admin.com
 #
 #
-# Disallow other users to create a new subdomain.
+# Enable the rule check for Enforce subdomain ownership for a specific domain. 
+# Enforce subdomain ownership setting in /edit/server/ set to no will always overwrite this behaviour
 # eg: admin adds admin.com
 # eg: admin adds admin.com
-# user can't create user.admin.com
+# user can create user.admin.com
 
 
 
 
 #----------------------------------------------------------#
 #----------------------------------------------------------#