diff options
Diffstat (limited to 'lib/conf/apps.php')
-rw-r--r-- | lib/conf/apps.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/conf/apps.php b/lib/conf/apps.php new file mode 100644 index 0000000..fc714ca --- /dev/null +++ b/lib/conf/apps.php @@ -0,0 +1,21 @@ +<?php + +$homepage = "notes"; + +$apps = array( + "image" => array( + "index" => 1, + "delete" => 1, + "upload" => 0), + "account" => array( + "new" => 0), + "notes" => array( + "index" => 0, + "user" => 0, + "view" => 0, + "new" => 1, + "edit" => 1, + "delete" => 1, + "move" => 1, + "source" => 0), + ); |