summaryrefslogtreecommitdiff
path: root/modules/gallery/config/identity.php
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-10-07 21:40:05 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-10-07 21:40:05 -0700
commit03d0311618267cf0b16445161c4d275749d64a5e (patch)
treea4143bcca595e8724e5fd516d17f8b26daa1ee4e /modules/gallery/config/identity.php
parentb3211cb2a8282556d410c91771baeb764d47ed10 (diff)
Implement a user::is_writable() API method and disable the user add, updates and display if the Identity driver does not support writes. This is set in the config.identity.php
Diffstat (limited to 'modules/gallery/config/identity.php')
-rw-r--r--modules/gallery/config/identity.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/gallery/config/identity.php b/modules/gallery/config/identity.php
index f2064127..72d1b589 100644
--- a/modules/gallery/config/identity.php
+++ b/modules/gallery/config/identity.php
@@ -18,7 +18,7 @@
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
/*
- * @package User
+ * @package Identity
*
* User settings, defined as arrays, or "groups". If no group name is
* used when loading the cache library, the group named "default" will be used.
@@ -32,5 +32,6 @@
*/
$config["default"] = array (
"driver" => "gallery",
+ "allow_updates" => false,
"params" => array(),
);