File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change 7
7
8
8
namespace Firehose . Web . Authors
9
9
{
10
- public class JoshKing : IAmACommunityMember , IFilterMyBlogPosts
10
+ public class JoshKing : IAmACommunityMember
11
11
{
12
12
public string FirstName => "Josh" ;
13
13
public string LastName => "King" ;
@@ -20,11 +20,6 @@ public class JoshKing : IAmACommunityMember, IFilterMyBlogPosts
20
20
public GeoPosition Position => new GeoPosition ( - 39.4928 , 176.9120 ) ;
21
21
22
22
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/" ) ; } }
29
24
}
30
25
}
You can’t perform that action at this time.
0 commit comments