Add the cloud file recycling job back to online with data safety.

This commit is contained in:
2025-06-12 00:58:16 +08:00
parent 2e09e63022
commit ffb3f83b96
3 changed files with 73 additions and 100 deletions

View File

@ -72,6 +72,7 @@ public class Profile : ModelBase
[Column(TypeName = "jsonb")] public VerificationMark? Verification { get; set; }
[Column(TypeName = "jsonb")] public BadgeReferenceObject? ActiveBadge { get; set; }
[Column(TypeName = "jsonb")] public SubscriptionReferenceObject? StellarMembership { get; set; }
public int Experience { get; set; } = 0;
[NotMapped] public int Level => Leveling.ExperiencePerLevel.Count(xp => Experience >= xp) - 1;