Skip to content

Commit

Permalink
fix google delete
Browse files Browse the repository at this point in the history
  • Loading branch information
FunixG committed Feb 2, 2024
1 parent b5e4903 commit c42fd74
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.RequestBody;

import java.util.List;

Expand All @@ -13,6 +14,6 @@
public interface InternalGoogleAuthClient {

@DeleteMapping
void deleteAllByUserUuidIn(List<String> userUuids);
void deleteAllByUserUuidIn(@RequestBody List<String> userUuids);

}

0 comments on commit c42fd74

Please sign in to comment.