Adds subscriber count

This commit is contained in:
Jonathan Bourdon
2024-08-04 04:35:08 -04:00
parent 0cd913b274
commit 7ec668a822
3 changed files with 76 additions and 9 deletions

View File

@@ -232,9 +232,39 @@ internal class TestDataSeeder(
}
};
private readonly static Creator ChloeCreator = new()
{
Name = "chloeprofile",
About = new()
{
Title = "Page officielle",
Description = "𝐿𝑎 𝑐𝑟𝑒́𝑎𝑡𝑖𝑣𝑖𝑡𝑒́ 𝑐𝑒𝑠𝑡 𝑙𝑖𝑛𝑡𝑒𝑙𝑙𝑖𝑔𝑒𝑛𝑐𝑒 𝑞𝑢𝑖 𝑠’𝑎𝑚𝑢𝑠𝑒!",
},
ProfileColors = new()
{
BannerTop = "#231F20",
BannerBottom = "#272526",
Accent = "#231F20",
Menu = "#231F20",
},
SocialNetworks =
new()
{
FacebookUrl = "https://www.facebook.com/chloegestionmedias",
InstagramUrl = "https://www.instagram.com/chloe.photo_gms",
},
StoredDataUrls = new()
{
BannerPictureUrl = "/images/usersmedia/chloebeaugrand/banners/bannerChloeBeaugrand01.png",
ProfilePictureUrl = "/images/usersmedia/chloebeaugrand/profilepictures/profileChloeBeaugrand01.png"
}
};
private readonly Creator[] _creators =
[
HutopyCreator,
ArpsCreator
ArpsCreator,
ChloeCreator
];
}