diff options
author | Joe Rayhawk <jrayhawk@omgwallhack.org> | 2011-05-11 22:56:49 -0700 |
---|---|---|
committer | Joe Rayhawk <jrayhawk@omgwallhack.org> | 2011-05-11 22:56:49 -0700 |
commit | df72c02b16c0230cc7972141eb9aa96fd9244251 (patch) | |
tree | a8670b413724426af2a28a65f42f81deb122abd5 | |
parent | f4cb34f8a67c1a0db62633cf6547b3c08e68c976 (diff) | |
download | piny-code-df72c02b16c0230cc7972141eb9aa96fd9244251.tar.gz piny-code-df72c02b16c0230cc7972141eb9aa96fd9244251.zip |
Making repopermissions even more git-friendly
-rw-r--r-- | libpiny/lib/Piny/Config.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpiny/lib/Piny/Config.pm b/libpiny/lib/Piny/Config.pm index 520e849..6a63168 100644 --- a/libpiny/lib/Piny/Config.pm +++ b/libpiny/lib/Piny/Config.pm @@ -47,8 +47,8 @@ subtype 'HttpsUrl' subtype 'RepoPermission' => as 'Str' - => where { $_ eq "0666" or $_ eq "0664" or $_ eq "0660" or $_ eq "0640" } - => message { 'Must be one of 0666, 0664, 0660, or 0640.' } + => where { $_ eq "0666" or $_ eq "0664" or $_ eq "0660" or $_ eq "0640" or $_ eq "group" or $_ eq "true" or $_ eq "all" or $_ eq "everybody" or $_ eq "world"} + => message { 'Must be one of 0666, 0664 (or all, everybody, world), 0660 (or true, group), or 0640.' } ; # Attributes |