diff options
author | David Lawrence <dkl@redhat.com> | 2010-03-23 15:52:16 -0400 |
---|---|---|
committer | David Lawrence <dkl@redhat.com> | 2010-03-23 15:52:16 -0400 |
commit | 455ab8384cc8a33be25c1a90087aca2673b96b69 (patch) | |
tree | 1de7daa7480ba5343a5b86d708a392ca0f69f357 /Bugzilla/Constants.pm | |
parent | Bug 553267: Allow specifying that you don't want flag data, for config.cgi (diff) | |
download | bugzilla-455ab8384cc8a33be25c1a90087aca2673b96b69.tar.gz bugzilla-455ab8384cc8a33be25c1a90087aca2673b96b69.tar.bz2 bugzilla-455ab8384cc8a33be25c1a90087aca2673b96b69.zip |
Bug 544332 - New bug_check_can_change_field hook for Bugzilla/Bug.pm
r/a=mkanat
Diffstat (limited to 'Bugzilla/Constants.pm')
-rw-r--r-- | Bugzilla/Constants.pm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index d38f123fd..87210ffd4 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -175,6 +175,11 @@ use File::Basename; PASSWORD_SALT_LENGTH CGI_URI_LIMIT + + PRIVILEGES_REQUIRED_NONE + PRIVILEGES_REQUIRED_REPORTER + PRIVILEGES_REQUIRED_ASSIGNEE + PRIVILEGES_REQUIRED_EMPOWERED ); @Bugzilla::Constants::EXPORT_OK = qw(contenttypes); @@ -522,6 +527,15 @@ use constant PASSWORD_SALT_LENGTH => 8; # can be safely done or not based on the web server's URI length setting. use constant CGI_URI_LIMIT => 8000; +# If the user isn't allowed to change a field, we must tell him who can. +# We store the required permission set into the $PrivilegesRequired +# variable which gets passed to the error template. + +use constant PRIVILEGES_REQUIRED_NONE => 0; +use constant PRIVILEGES_REQUIRED_REPORTER => 1; +use constant PRIVILEGES_REQUIRED_ASSIGNEE => 2; +use constant PRIVILEGES_REQUIRED_EMPOWERED => 3; + sub bz_locations { # We know that Bugzilla/Constants.pm must be in %INC at this point. # So the only question is, what's the name of the directory |