-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged PR 79: feat: Added blogarama site verification as meta tag.
feat: Added blogarama site verification as meta tag.
- Loading branch information
Showing
3 changed files
with
43 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,45 @@ | ||
using System.ComponentModel.DataAnnotations; | ||
using System.ComponentModel.DataAnnotations; | ||
|
||
namespace Moonglade.Configuration; | ||
|
||
public partial class AdvancedSettings : IBlogSettings | ||
{ | ||
[Display(Name = "Enable Syndication")] | ||
public bool EnableSyndication { get; set; } = true; | ||
[Display(Name = "Enable Syndication")] | ||
public bool EnableSyndication { get; set; } = true; | ||
|
||
[Display(Name = "Your Netvibes Url")] | ||
public string NetvibesUrl { get; set; } | ||
[Display(Name = "Your Netvibes Url")] | ||
public string NetvibesUrl { get; set; } | ||
|
||
[Display(Name = "Your Blogarama Url")] | ||
public string BlogaramaUrl { get; set; } | ||
[Display(Name = "Your Blogarama Url")] | ||
public string BlogaramaUrl { get; set; } | ||
|
||
[Display(Name = "Enable Bloggerei")] | ||
public bool BloggereiEnabled { get; set; } | ||
[Display(Name = "BlogaramaID")] | ||
public string BlogaramaID { get; set; } | ||
|
||
[Display(Name = "Enable Bloggingfusion")] | ||
public bool BloggingfusionEnabled { get; set; } | ||
[Display(Name = "Enable Bloggerei")] | ||
public bool BloggereiEnabled { get; set; } | ||
|
||
[Display(Name = "Enable Bloggeramt")] | ||
public bool BloggeramtEnabled { get; set; } | ||
[Display(Name = "Enable Bloggingfusion")] | ||
public bool BloggingfusionEnabled { get; set; } | ||
|
||
[Display(Name = "Enable Topblogs")] | ||
public bool TopblogsEnabled { get; set; } | ||
[Display(Name = "Enable Bloggeramt")] | ||
public bool BloggeramtEnabled { get; set; } | ||
|
||
[Display(Name = "Topblogs TrackerID")] | ||
public string TopblogsTrackerID { get; set; } | ||
[Display(Name = "Enable Topblogs")] | ||
public bool TopblogsEnabled { get; set; } | ||
|
||
[Display(Name = "Ontoplist Url")] | ||
public string OntoplistUrl { get; set; } | ||
[Display(Name = "Topblogs TrackerID")] | ||
public string TopblogsTrackerID { get; set; } | ||
|
||
[Display(Name = "Ontoplist ID")] | ||
public string OntoplistID { get; set; } | ||
[Display(Name = "Ontoplist Url")] | ||
public string OntoplistUrl { get; set; } | ||
|
||
[Display(Name = "Your Add to Yahoo Url. e.g. https://yourdomain/rss")] | ||
public string YahooUrl { get; set; } | ||
[Display(Name = "Ontoplist ID")] | ||
public string OntoplistID { get; set; } | ||
|
||
[Display(Name = "Bloglovin Url")] | ||
public string BloglovinUrl { get; set; } | ||
[Display(Name = "Your Add to Yahoo Url. e.g. https://yourdomain/rss")] | ||
public string YahooUrl { get; set; } | ||
|
||
[Display(Name = "Bloglovin Url")] | ||
public string BloglovinUrl { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters