Skip to content

Commit

Permalink
(#377) web: udpate reaction service interface
Browse files Browse the repository at this point in the history
  • Loading branch information
SaintAngeLs committed Aug 20, 2024
1 parent cdd662d commit 4c19690
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using MiniSpace.Web.Areas.Reactions.CommandDto;
using MiniSpace.Web.DTO;
using MiniSpace.Web.DTO.Enums;
using MiniSpace.Web.HttpClients;
Expand All @@ -11,8 +12,7 @@ public interface IReactionsService
{
Task<IEnumerable<ReactionDto>> GetReactionsAsync(Guid contentId, ReactionContentType contentType);
Task<ReactionsSummaryDto> GetReactionsSummaryAsync(Guid contentId, ReactionContentType contentType);
Task<HttpResponse<object>> CreateReactionAsync(Guid reactionId, Guid studentId, string reactionType,
Guid contentId, string contentType);
Task<HttpResponse<object>> CreateReactionAsync(CreateReactionDto command);
Task DeleteReactionAsync(Guid reactionId);
}
}

0 comments on commit 4c19690

Please sign in to comment.