new app server and database + added hub and controller of user profile

This commit is contained in:
Artemy
2025-11-04 11:41:06 +07:00
parent 1d442d037c
commit a5a5fc4758
62 changed files with 1760 additions and 2543 deletions
@@ -1,5 +1,6 @@
using AutoMapper;
using Govor.API.Extensions.Mapping;
using Govor.Application.Profiles;
using Govor.Contracts.DTOs;
using Govor.Contracts.Responses;
using Govor.Core.Models;
@@ -23,5 +24,7 @@ public class MappingProfile : Profile
CreateMap<Friendship, FriendshipDto>();
CreateMap<UserSession, SessionDto>();
CreateMap<UserProfile, UserProfileDto>();
}
}