Quellcode durchsuchen

add PathMatch configuration

master
Savorboard vor 7 Jahren
Ursprung
Commit
9b8865836e
1 geänderte Dateien mit 3 neuen und 0 gelöschten Zeilen
  1. +3
    -0
      src/DotNetCore.CAP/Dashboard/CAP.DashboardOptions.cs

+ 3
- 0
src/DotNetCore.CAP/Dashboard/CAP.DashboardOptions.cs Datei anzeigen

@@ -10,6 +10,7 @@ namespace DotNetCore.CAP
public DashboardOptions()
{
AppPath = "/";
PathMatch = "/cap";
Authorization = new[] { new LocalRequestsOnlyAuthorizationFilter() };
StatsPollingInterval = 2000;
}
@@ -19,6 +20,8 @@ namespace DotNetCore.CAP
/// </summary>
public string AppPath { get; set; }

public string PathMatch { get; set; }

public IEnumerable<IDashboardAuthorizationFilter> Authorization { get; set; }

/// <summary>


Laden…
Abbrechen
Speichern