Skip to content

Commit

Permalink
[SELC-3816] Feat: Added user openAPI, userConnector and User rest Cli…
Browse files Browse the repository at this point in the history
…ent (#326)

* Added user openAPI, userConnector and User rest Client

* change requests and remove unused properties for Api version
  • Loading branch information
flaminiaScarciofolo authored Feb 6, 2024
1 parent ef141f9 commit 0e49972
Show file tree
Hide file tree
Showing 10 changed files with 1,390 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package it.pagopa.selfcare.dashboard.connector.api;

import it.pagopa.selfcare.dashboard.connector.model.institution.InstitutionInfo;
import it.pagopa.selfcare.dashboard.connector.model.user.MutableUserFieldsDto;

import java.util.List;


public interface UserApiConnector {

void updateUser(String userId, String institutionId, MutableUserFieldsDto userDto);

List<InstitutionInfo> getUserProducts(String userId);

}
Loading

0 comments on commit 0e49972

Please sign in to comment.