From 2ca15f8bc3d58333f2f379fad43914798088f58a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ond=C5=99ej=20Kuzn=C3=ADk?= Date: Sun, 15 Dec 2019 23:49:47 +0000 Subject: [PATCH] Bug 1584477 - Mark Group get method readonly (#82) --- Bugzilla/WebService/Group.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Bugzilla/WebService/Group.pm b/Bugzilla/WebService/Group.pm index 4467883a4e..b66b21f06d 100644 --- a/Bugzilla/WebService/Group.pm +++ b/Bugzilla/WebService/Group.pm @@ -16,6 +16,10 @@ use Bugzilla::Constants; use Bugzilla::Error; use Bugzilla::WebService::Util qw(validate translate params_to_objects); +use constant READ_ONLY => qw( + get +); + use constant PUBLIC_METHODS => qw( create get -- 2.47.3