feat: harden auth ops and deployment baseline

This commit is contained in:
2026-06-27 10:53:53 +09:00
parent a6ca30eec8
commit 28060b71be
41 changed files with 714 additions and 208 deletions
-2
View File
@@ -1,7 +1,5 @@
namespace TaxBaik.Domain.Entities;
using TaxBaik.Domain.Enums;
public class Inquiry
{
public int Id { get; set; }
+3 -4
View File
@@ -2,8 +2,7 @@ namespace TaxBaik.Domain.Enums;
public enum InquiryStatus
{
New = 0, // 새로운 문의
Contacted = 1, // 연락 완료
Contracted = 2, // 계약 체결
Closed = 3 // 종료
New = 0,
Contacted = 1,
Completed = 2
}
@@ -5,4 +5,6 @@ public interface IAdminUserRepository
Task<Entities.AdminUser?> GetByUsernameAsync(string username);
Task<Entities.AdminUser?> GetByIdAsync(int id);
Task CreateAsync(Entities.AdminUser user);
Task UpdatePasswordHashAsync(int id, string passwordHash);
Task UpdateLastLoginAtAsync(int id);
}