Don't require authentication to approve/deny a copy request. Possession of the token is sufficient.

This commit is contained in:
Mark H. Wood
2022-09-16 11:08:15 -04:00
parent a4cb9bd129
commit 692fefcbac

View File

@@ -218,7 +218,7 @@ public class RequestItemRepository
}
@Override
@PreAuthorize("isAuthenticated()")
@PreAuthorize("permitAll()")
public RequestItemRest put(Context context, HttpServletRequest request,
String apiCategory, String model, String token, JsonNode requestBody)
throws AuthorizeException {