diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2015-12-18 12:52:18 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2015-12-18 12:52:18 +0100 |
commit | f9a3ffafb2ede01b80eb18d30521e03741f4f005 (patch) | |
tree | 1fb22b42dc766c6587d2b2e91fbef861eab1d001 /Bugzilla/WebService | |
parent | fbd124bfc141db9a6ad8f7b4734f0db6f9da2f5f (diff) | |
download | bugzilla-f9a3ffafb2ede01b80eb18d30521e03741f4f005.tar.gz bugzilla-f9a3ffafb2ede01b80eb18d30521e03741f4f005.tar.xz |
Bug 1232190: FlagType.create should require the user to be logged in
r=dkl
Diffstat (limited to 'Bugzilla/WebService')
-rw-r--r-- | Bugzilla/WebService/FlagType.pm | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Bugzilla/WebService/FlagType.pm b/Bugzilla/WebService/FlagType.pm index 9723d4735..9d7cce037 100644 --- a/Bugzilla/WebService/FlagType.pm +++ b/Bugzilla/WebService/FlagType.pm @@ -61,11 +61,9 @@ sub get { sub create { my ($self, $params) = @_; + my $user = Bugzilla->login(LOGIN_REQUIRED); - my $dbh = Bugzilla->dbh; - my $user = Bugzilla->user; - - Bugzilla->user->in_group('editcomponents') + $user->in_group('editcomponents') || scalar(@{$user->get_products_by_permission('editcomponents')}) || ThrowUserError("auth_failure", { group => "editcomponents", action => "add", @@ -121,11 +119,9 @@ sub create { sub update { my ($self, $params) = @_; - my $dbh = Bugzilla->dbh; - my $user = Bugzilla->user; + my $user = Bugzilla->login(LOGIN_REQUIRED); - Bugzilla->login(LOGIN_REQUIRED); $user->in_group('editcomponents') || scalar(@{$user->get_products_by_permission('editcomponents')}) || ThrowUserError("auth_failure", { group => "editcomponents", |