Skip to content

Commit

Permalink
Fix missing entity type id on transit router. Fixes #1369
Browse files Browse the repository at this point in the history
  • Loading branch information
plorenz committed Mar 24, 2023
1 parent 4057d55 commit 0a6043b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions controller/model/transit_router_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ type TransitRouterManager struct {
allowedFields boltz.FieldChecker
}

func (self *TransitRouterManager) GetEntityTypeId() string {
return "transitRouters"
}

func (self *TransitRouterManager) newModelEntity() edgeEntity {
return &TransitRouter{}
}
Expand Down

0 comments on commit 0a6043b

Please sign in to comment.