mirror of
https://github.com/daeuniverse/dae.git
synced 2025-07-16 02:41:09 +07:00
feat: add virtual must_rules outbound
This commit is contained in:
@ -60,6 +60,8 @@ func (b *RoutingMatcherBuilder) outboundToId(outbound string) (uint8, error) {
|
||||
outboundId = uint8(consts.OutboundLogicalOr)
|
||||
case consts.OutboundLogicalAnd.String():
|
||||
outboundId = uint8(consts.OutboundLogicalAnd)
|
||||
case consts.OutboundMustRules.String():
|
||||
outboundId = uint8(consts.OutboundMustRules)
|
||||
default:
|
||||
var ok bool
|
||||
outboundId, ok = b.outboundName2Id[outbound]
|
||||
|
Reference in New Issue
Block a user