mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
feat: Implement initialization exceptions handling and add API endpoint for retrieval
This commit is contained in:
parent
554916a74a
commit
ac3b73cf32
4 changed files with 99 additions and 6 deletions
|
|
@ -184,6 +184,11 @@ public class EssentialsWebApi : EssentialsDevice
|
|||
Name = "Get Routing Devices and TieLines",
|
||||
RouteHandler = new GetRoutingDevicesAndTieLinesHandler()
|
||||
},
|
||||
new HttpCwsRoute("initializationExceptions")
|
||||
{
|
||||
Name = "Get Initialization Exceptions",
|
||||
RouteHandler = new GetInitializationExceptionsRequestHandler()
|
||||
}
|
||||
};
|
||||
|
||||
AddRoute(routes);
|
||||
|
|
@ -296,4 +301,5 @@ public class EssentialsWebApi : EssentialsDevice
|
|||
|
||||
Debug.LogMessage(LogEventLevel.Information, this, new string('-', 50));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue