Ignore:
Timestamp:
03/24/26 22:13:36 (3 months ago)
Author:
kikisrbinoska <srbinoskakristina07@…>
Branches:
main
Children:
7fbb91c
Parents:
acf690c
Message:

Fixed reading lists,comments and likes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ChapterX.Domain/Repositories/ILikesRepository.cs

    racf690c r73b69b2  
    55    public interface ILikesRepository : IRepository<Likes>
    66    {
     7        Task<IEnumerable<Likes>> GetByStoryIdAsync(int storyId, CancellationToken cancellationToken = default);
     8        Task<bool> DeleteByUserAndStoryAsync(int userId, int storyId, CancellationToken cancellationToken = default);
     9        Task<bool> ExistsAsync(int userId, int storyId, CancellationToken cancellationToken = default);
    710    }
    811}
Note: See TracChangeset for help on using the changeset viewer.