diff --git a/backend/src/Web/Features/Contents/Handlers/GetCreatorBySlug.cs b/backend/src/Web/Features/Contents/Handlers/GetCreatorBySlug.cs index ba4ba0f..760cf82 100644 --- a/backend/src/Web/Features/Contents/Handlers/GetCreatorBySlug.cs +++ b/backend/src/Web/Features/Contents/Handlers/GetCreatorBySlug.cs @@ -16,6 +16,7 @@ public class GetCreatorBySlugResponse( bool verified, bool acceptDonation, string name, + string slug, string? title, Socials socials, PresentationInfos presentationInfos, @@ -27,6 +28,7 @@ public class GetCreatorBySlugResponse( public bool Verified { get; } = verified; public bool AcceptDonation { get; } = acceptDonation; public string Name { get; } = name; + public string Slug { get; } = slug; public string? Title { get; } = title; public Socials Socials { get; } = socials; public PresentationInfos PresentationInfos { get; } = presentationInfos; @@ -75,6 +77,7 @@ public class GetCreatorBySlugHandler( c.Verified, c.AcceptDonation, c.Name, + c.Slug, c.Title, c.Socials, c.PresentationInfos, diff --git a/frontend/src/locales/en.json b/frontend/src/locales/en.json index 6aac906..00e4d87 100644 --- a/frontend/src/locales/en.json +++ b/frontend/src/locales/en.json @@ -88,6 +88,7 @@ "informations": "Informations", "name": "Name", "title": "Title", + "slug": "Slug", "description": "Description", "banner&profile": "Banner and profile picture", "borderpicturecolor": "Profile picture border", diff --git a/frontend/src/locales/fr.json b/frontend/src/locales/fr.json index 8131abe..77fa5fa 100644 --- a/frontend/src/locales/fr.json +++ b/frontend/src/locales/fr.json @@ -88,6 +88,7 @@ "informations": "Informations", "name": "Nom", "title": "Titre", + "slug": "Slug", "description": "Description", "banner&profile": "Bannière et photo de profil", "borderpicturecolor": "Bordure de la photo de profil", diff --git a/frontend/src/views/profile/ProfilePage.vue b/frontend/src/views/profile/ProfilePage.vue index 837efc7..2b06eac 100644 --- a/frontend/src/views/profile/ProfilePage.vue +++ b/frontend/src/views/profile/ProfilePage.vue @@ -179,6 +179,12 @@ const closeDialog = () => { {{ creatorProfileStore.creator.name }} mdi-chevron-right + +