-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathSiteKeys.cs
25 lines (22 loc) · 1.11 KB
/
SiteKeys.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections.Generic;
using System.Text;
namespace CovidSafeWatch
{
// YAML front matter
public static class SiteKeys
{
public const string NoContainer = nameof(NoContainer);
public const string NoSidebar = nameof(NoSidebar);
public const string Topic = nameof(Topic);
public const string NoChildPages = nameof(NoChildPages);
public const string BreadcrumbTitle = nameof(BreadcrumbTitle); // The title of a page when displayed in the breadcrumbs
public const string BreachesPrivacy = nameof(BreachesPrivacy); // true || false
public const string ReportedAt = nameof(ReportedAt); // datetime
public const string ResolvedAt = nameof(ResolvedAt); // datetime
public const string JiraCaseNumber = nameof(JiraCaseNumber);
public const string CVEIdentifier = nameof(CVEIdentifier);
public const string Status = nameof(Status); // Disclosed, Acknowledged, Resolved, Invalid
public const string IssueMaintainer = nameof(IssueMaintainer); // github username of the person who is maintainer of the issue
}
}