Ignore:
Timestamp:
10/28/25 10:51:32 (11 months ago)
Author:
GitHub <noreply@…>
Branches:
master
Children:
1d32d5c
Parents:
c0256f3 (diff), 28759eb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Boris Gjorgjievski <69085722+imbrsk@…> (10/28/25 10:51:32)
git-committer:
GitHub <noreply@…> (10/28/25 10:51:32)
Message:

Merge branch 'Dev' into feature/getUser

Location:
iknow-api/Repository/Implementations
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • iknow-api/Repository/Implementations/UserRepository.cs

    rc0256f3 re423ff3  
    3535
    3636
     37        public async Task<User?> GetOnlyUserByIdAsync(int id)
     38        {
     39            return await _context.User.FirstOrDefaultAsync(u => u.Id == id);
     40        }
    3741        public async Task AddUserAsync(User user)
    3842        {
Note: See TracChangeset for help on using the changeset viewer.