Skip to content

Commit dbb10ac

Browse files
authored
Merge pull request planetpowershell#123 from Windos/patch-4
Update feed uri, blog platform transition
2 parents a82558f + c0adb8b commit dbb10ac

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

src/Firehose.Web/Authors/JoshKing.cs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace Firehose.Web.Authors
99
{
10-
public class JoshKing : IAmACommunityMember, IFilterMyBlogPosts
10+
public class JoshKing : IAmACommunityMember
1111
{
1212
public string FirstName => "Josh";
1313
public string LastName => "King";
@@ -20,11 +20,6 @@ public class JoshKing : IAmACommunityMember, IFilterMyBlogPosts
2020
public GeoPosition Position => new GeoPosition(-39.4928, 176.9120);
2121

2222
public Uri WebSite => new Uri("https://king.geek.nz/");
23-
public IEnumerable<Uri> FeedUris { get { yield return new Uri("https://king.geek.nz/feed.xml"); } }
24-
25-
public bool Filter(SyndicationItem item)
26-
{
27-
return item.Categories.Where(i => i.Name.Equals("powershell", StringComparison.OrdinalIgnoreCase)).Any();
28-
}
23+
public IEnumerable<Uri> FeedUris { get { yield return new Uri("https://king.geek.nz/tag/powershell/rss/"); } }
2924
}
3025
}

0 commit comments

Comments
 (0)