Skip to content

Commit

Permalink
Remove CircuitEvent class.
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbound committed Aug 7, 2023
1 parent f076089 commit ec22b60
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 43 deletions.
4 changes: 2 additions & 2 deletions Server/Hubs/CircuitConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -451,8 +451,8 @@ public async Task UpdateTags(string deviceID, string tags)
{
if (tags.Length > 200)
{
var message = new CircuitEvent(CircuitEventName.DisplayMessage,
$"Tag must be 200 characters or less. Supplied length is {tags.Length}.",
var message = new DisplayNotificationMessage(
$"Tag must be 200 characters or less. Supplied length is {tags.Length}.",
"Tag must be under 200 characters.",
"bg-warning");

Expand Down
20 changes: 0 additions & 20 deletions Server/Models/CircuitEvent.cs

This file was deleted.

21 changes: 0 additions & 21 deletions Server/Models/CircuitEventName.cs

This file was deleted.

0 comments on commit ec22b60

Please sign in to comment.