new_model_for_communities #15

Merged
michele.artini merged 81 commits from new_model_for_communities into master 2023-10-24 08:12:26 +02:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit aebac32457 - Show all commits

View File

@ -142,7 +142,7 @@ public class CommunityApiController {
})
public void deleteCommunityProject(
@PathVariable final String id,
@RequestBody final String projectId) throws CommunityException {
@RequestParam final String projectId) throws CommunityException {
communityService.removeCommunityProjects(id, projectId);
}
@ -233,7 +233,7 @@ public class CommunityApiController {
})
public void removeCommunityContentprovider(
@PathVariable final String id,
@RequestBody final String contentproviderId) throws CommunityException {
@RequestParam final String contentproviderId) throws CommunityException {
communityService.removeCommunityContentProviders(id, contentproviderId);
}