gustafn
committed
on 21 Nov 21
added support for optionally turning off proctoring recodings

This options is useful e.g. for e.g. mock exams to avoid privacy issues.
openacs-4/.../acs-subsite/tcl/group-init.tcl (+2 -2)
1 1 #
2 2 # Create group cache. The sizes can be tailored in the config
3 3 # file like the following:
4 4 #
5 5 # ns_section ns/server/${server}/acs/acs-subsite
6   #   ns_param GroupCache        2000000
  6 #   ns_param GroupCache        2MB
7 7 #
8 8 ::acs::KeyPartitionedCache create ::acs::group_cache \
9 9     -package_key acs-subsite \
10 10     -parameter GroupCache \
11       -default_size 2000000
  11     -default_size 2MB
12 12
13 13 # Local variables:
14 14 #    mode: tcl
15 15 #    tcl-indent-level: 4
16 16 #    indent-tabs-mode: nil
17 17 # End: