Skip to content

Commit

Permalink
fix(DancingGoat): resolve dancingGoat warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bkapustik committed Apr 8, 2024
1 parent 74a583e commit e2a4066
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion examples/DancingGoat/Models/ContentRepositoryBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ public abstract class ContentRepositoryBase
/// <summary>
/// Initializes a new instance of the <see cref="ContentRepositoryBase"/> class.
/// </summary>
/// <param name="pageRetriever">The pages retriever.</param>
/// <param name="websiteChannelContext">Website channel context.</param>
/// <param name="executor">Content query executor.</param>
/// <param name="mapper">Mapper to provide mapping from data container to model.</param>
Expand Down
2 changes: 1 addition & 1 deletion examples/DancingGoat/Models/Reusable/Cafe/CafeViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace DancingGoat.Models
public record CafeViewModel(string Name, string PhotoPath, string PhotoShortDescription, string Street, string City, string Country, string ZipCode, string Phone)
{
/// <summary>
/// Maps <see cref=Cafe"/> to a <see cref="CafeViewModel"/>.
/// Maps <see cref="Cafe"/> to a <see cref="CafeViewModel"/>.
/// </summary>
public static CafeViewModel GetViewModel(Cafe cafe)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public record ArticlesSectionViewModel(IEnumerable<ArticleViewModel> Articles, s


/// <summary>
/// Maps <see cref=ArticlesSection"/> to a <see cref="ArticlesSectionViewModel"/>.
/// Maps <see cref="ArticlesSection"/> to a <see cref="ArticlesSectionViewModel"/>.
/// </summary>
public static ArticlesSectionViewModel GetViewModel(ArticlesSection articlesSection, IEnumerable<ArticleViewModel> Articles, string ArticlesPath)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ public static string GetDescriptionValue(object model)


/// <summary>
/// Returns value of <see cref="ISEOFields.SEOAllowSearchIndexing"/> field from the given model."/>
/// </summary>
/// <remarks>
/// View model must satisfy following requirements:<br/>
Expand Down

0 comments on commit e2a4066

Please sign in to comment.