File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/java/com/gitblit/wicket/pages Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ public EditTicketPage(PageParameters params) {
171171 } else {
172172 // authorization is by NAMED users (users with PUSH permission can be set responsible)
173173 for (RegistrantAccessPermission rp : app ().repositories ().getUserAccessPermissions (getRepositoryModel ())) {
174- if (rp .permission .atLeast (AccessPermission .PUSH ) && ! rp . isTeam () ) {
174+ if (rp .permission .atLeast (AccessPermission .PUSH )) {
175175 userlist .add (rp .registrant );
176176 }
177177 }
Original file line number Diff line number Diff line change @@ -389,7 +389,7 @@ public void onClick(AjaxRequestTarget target) {
389389 } else {
390390 // authorization is by NAMED users (users with PUSH permission can be set responsible)
391391 for (RegistrantAccessPermission rp : app ().repositories ().getUserAccessPermissions (getRepositoryModel ())) {
392- if (rp .permission .atLeast (AccessPermission .PUSH ) && ! rp . isTeam () ) {
392+ if (rp .permission .atLeast (AccessPermission .PUSH )) {
393393 userlist .add (rp .registrant );
394394 }
395395 }
You can’t perform that action at this time.
0 commit comments