Skip to content

Commit

Permalink
Merge pull request #63 from Onlineberatung/develop
Browse files Browse the repository at this point in the history
[pull] develop from Onlineberatung:develop
  • Loading branch information
adnanalicic authored Nov 21, 2022
2 parents 8fe6454 + 6a13d98 commit 10db3a5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
import org.springframework.web.client.RestTemplate;
import de.caritas.cob.agencyservice.useradminservice.generated.ApiClient;
import de.caritas.cob.agencyservice.useradminservice.generated.web.AdminUserControllerApi;

@Component
Expand All @@ -17,7 +16,7 @@ public class UserAdminServiceApiControllerFactory {
private RestTemplate restTemplate;

public AdminUserControllerApi createControllerApi() {
var apiClient = new ApiClient(restTemplate).setBasePath(this.userAdminServiceApiUrl);
var apiClient = new UserAdminApiClient(restTemplate).setBasePath(this.userAdminServiceApiUrl);
return new AdminUserControllerApi(apiClient);
}
}

0 comments on commit 10db3a5

Please sign in to comment.