- Removed all BTCPay references from services and configuration
- Implemented SilverPAY as sole payment provider (no fallback)
- Fixed JWT authentication with proper key length (256+ bits)
- Added UsersController with full CRUD operations
- Updated User model with Email and Role properties
- Configured TeleBot with real Telegram bot token
- Fixed launchSettings.json with JWT environment variable
- E2E tests passing for authentication, catalog, orders
- Payment creation pending SilverPAY server fix
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
584 B
C#
27 lines
584 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace LittleShop.Models;
|
|
|
|
public class User
|
|
{
|
|
[Key]
|
|
public Guid Id { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string Username { get; set; } = string.Empty;
|
|
|
|
[Required]
|
|
public string PasswordHash { get; set; } = string.Empty;
|
|
|
|
[StringLength(100)]
|
|
public string? Email { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string Role { get; set; } = "Staff";
|
|
|
|
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
|
|
|
public bool IsActive { get; set; } = true;
|
|
} |