Skip to content

Commit

Permalink
Added Slack and Bluesky profile link type (#69)
Browse files Browse the repository at this point in the history
Co-authored-by: Ivan Lieckens <[email protected]>
  • Loading branch information
sc-ivanlieckens and IvanLieckens authored Dec 9, 2024
1 parent 699250d commit a19d2b2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 16 deletions.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Add steps that publish symbols, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4

name: 4.16.2$(Rev:.r)
name: 4.17.0$(Rev:.r)

trigger:
- main
Expand Down
4 changes: 2 additions & 2 deletions src/Mvp.Selections.Client/Mvp.Selections.Client.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Mvp.Selections.Client</id>
<version>4.16.0</version>
<version>4.17.0</version>
<releaseNotes>
+ Review Sentiment
+ New profile link types
</releaseNotes>
<title>MVP Selections API Client</title>
<authors>sc-ivanlieckens</authors>
Expand Down
30 changes: 17 additions & 13 deletions src/Mvp.Selections.Domain/ProfileLinkType.cs
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
namespace Mvp.Selections.Domain
using System.Diagnostics.CodeAnalysis;

namespace Mvp.Selections.Domain;

[SuppressMessage("ReSharper", "IdentifierTypo", Justification = "Match the names of the networks.")]
public enum ProfileLinkType
{
public enum ProfileLinkType
{
Other,
Blog,
StackExchange,
Community,
Twitter,
Youtube,
Github,
LinkedIn
}
}
Other,
Blog,
StackExchange,
Community,
Twitter,
Youtube,
Github,
LinkedIn,
Slack,
Bluesky
}

0 comments on commit a19d2b2

Please sign in to comment.