diff options
author | Nicolas BERNSTEIN <alexis211@gmail.com> | 2011-09-17 16:48:29 +0200 |
---|---|---|
committer | Nicolas BERNSTEIN <alexis211@gmail.com> | 2011-09-17 16:48:29 +0200 |
commit | d0060968b77c39bdf8abffb071c971c166b59edb (patch) | |
tree | 0be52e00a25bd298235a0cf916fb07496d3ab95f /lib/conf/apps.php | |
download | Bits-d0060968b77c39bdf8abffb071c971c166b59edb.tar.gz Bits-d0060968b77c39bdf8abffb071c971c166b59edb.zip |
First commit.
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), + ); |