annetutil / annet

MIT License
35 stars 11 forks source link

NOCDEV-13636: xpl if-elseif-else #52

Closed grigory51 closed 2 months ago

grigory51 commented 2 months ago

As is:

xpl route-filter foo
  if community matches-any bar then
    approve
    else
    refuse
    endif
  end-filter

To be:

xpl route-filter foo
 if community matches-any bar then
  approve
 else
  refuse
 endif
 end-filter