Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified src/Dependencies/GSF/GSF.Web.dll
Binary file not shown.
Binary file modified src/Dependencies/openXDA/openXDA.Model.dll
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
using GSF.Data.Model;
using GSF.Collections;
using openXDA.Model;
using GSF.Web.Model;

namespace PQDashboard.Controllers.Disturbances
{
Expand Down Expand Up @@ -109,4 +110,11 @@ WHERE PhaseID IN (SELECT ID FROM Phase WHERE Name = 'Worst') AND
}
}
}

[SettingsCategory("dbOpenXDA")]
public class StandardMagDurCurve : openXDA.Model.StandardMagDurCurve { }

[RoutePrefix("api/Disturbances/StandardMagDurCurve")]
public class StandardMagDurCurveController : ModelController<StandardMagDurCurve>
{ }
}
1 change: 1 addition & 0 deletions src/PQDashboard/Controllers/PQDashboardController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
using GSF.Data;
using GSF.Data.Model;
using GSF.Web;
using GSF.Web.Model;
using openXDA.Model;
using PQDashboard.MapMetrics;

Expand Down
3 changes: 3 additions & 0 deletions src/PQDashboard/PQDashboard.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -1429,7 +1429,10 @@
<Service Include="{4A0DDDB5-7A95-4FBF-97CC-616D07737A77}" />
</ItemGroup>
<ItemGroup>
<TypeScriptCompile Include="Scripts\TSX\BarChart.tsx" />
<TypeScriptCompile Include="Scripts\TSX\MagDurChart.tsx" />
<TypeScriptCompile Include="Scripts\TSX\MeterEventsByLine.tsx" />
<TypeScriptCompile Include="Scripts\TSX\NavBar.tsx" />
<TypeScriptCompile Include="Scripts\TSX\Table.tsx" />
</ItemGroup>
<PropertyGroup>
Expand Down
Loading