opentdf / platform

OpenTDF Platform monorepo enabling the development and integration of _forever control_ of data into new and existing applications. The concept of forever control stems from an increasingly common concept known as zero trust.
BSD 3-Clause Clear License
15 stars 4 forks source link

feat(core): add doublestar for public routes #998

Closed jrschumacher closed 1 week ago

jrschumacher commented 1 week ago

Adds doublestar support to enable this

/mypep/*                         
/mypep/*/*                       
/mypep/dist/*                 
/mypep/dist/*/*
/mypep/dist/js/*
/mypep/dist/js/*/*
/mypep/dist/js/import/*
/mypep/dist/js/import/*/*
/mypep/assets/*                  
/mypep/assets/*/*
/mypep/assets/images/*
/mypep/assets/images/*/*
/mypep/assets/styles/*
/mypep/assets/styles/*/*

to this

/mypep/*
/mypep/*/*
/mypep/dist/**
/mypep/assets/**