feat(backend): avatar migration stuff

This commit is contained in:
sam 2025-04-17 16:05:26 +02:00
parent bcdb2f9540
commit 77e74dd331
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
15 changed files with 2094 additions and 0 deletions

View file

@ -29,6 +29,9 @@ public class Member : BaseModel
public List<Pronoun> Pronouns { get; set; } = [];
public List<Field> Fields { get; set; } = [];
// Only used by avatar-proxy and avatar-migration.
public bool AvatarMigrated { get; set; } = true;
public List<MemberFlag> ProfileFlags { get; set; } = [];
public Snowflake UserId { get; init; }