Beispiel #1
0
        public async Task <IHttpActionResult> RemoveArtifactsFromCollectionAsync(
            int id, string remove, ItemsRemovalParams removalParams)
        {
            removalParams.Validate();

            var result = await _collectionsService.RemoveArtifactsFromCollectionAsync(id, removalParams, Session.UserId);

            return(Ok(result));
        }