$grantGroupAccess

Function $grantGroupAccess grants the specified access for the named group.
Syntax
    $grantGroupAccess{group_name}{access_value_1}{access_value_2} ... {access_value_n}
DocumentationFunction $grantGroupAccess grants the specified accesses for the named group.

    Parameters:
      group_name, the name of the group to grant the access for.
      access_value_1 through access_value_n, the values of the accesses to be granted for the named group.
      Valid access values are:
        - ACCESS_CREATE
        - ACCESS_DELETE
        - ACCESS_READ
        - ACCESS_UPDATE
        - ACCESS_VISIBLE
        - ACCESS_DATABASE_CREATE
        - ACCESS_DATABASE_REMOVE
        - ACCESS_DATABASE_READ
        - ACCESS_DATABASE_UPDATE
        - ACCESS_ALL
    Throws:
      java.lang.IllegalArgumentException if the named group does not exist or if any access value is not one of the list above.
    Note:
      the accesses are granted for the current branch and its children only.
      the changes of the groups accesses do affect the users that are members.
Examples
Grant accesses for the group named 'quest_group':

    $grantGroupAccess{guests_group}{ACCESS_DATABASE_CREATE}{ACCESS_DATABASE_REMOVE}{ACCESS_DATABASE_READ}{ACCESS_DATABASE_UPDATE}
GroupSecurity
Minimum required transaction-mode:UPDATE=SECURITY
Required scripting permission of the developerPERMISSION_FL_ADMINISTRATIVE
Minimum parameters2
Maximum parameters <unlimited>