James Tombleson
adb4799206
* Added jobs Controller to trigger collection. * Added backgroundjobs to move them out of program.cs * new column to track youtube ID values and adding a sourceid column on the icon for linking * Added icon table repo * added interface for IconsRepo * hey the missing config models * adding section const keys to pull blocks of configs * Added youtubewatcher to the code but not ready to enable it in the background. More testing needed. * Test... improvements?
16 lines
563 B
C#
16 lines
563 B
C#
namespace Newsbot.Collector.Domain.Consts;
|
|
|
|
/// <summary>
|
|
/// This class contains the keys to find the objects in the config to load.
|
|
/// </summary>
|
|
public static class ConfigSectionsConst
|
|
{
|
|
public const string ConnectionStrings = "ConnectionStrings";
|
|
public const string FinalFantasyXiv = "FinalFantasyXiv";
|
|
public const string Reddit = "Reddit";
|
|
public const string Rss = "Rss";
|
|
public const string Twitch = "Twitch";
|
|
public const string Youtube = "Youtube";
|
|
|
|
public const string NotificationsDiscord = "Notifications:Discord";
|
|
} |