does this pass the wildcard through?
doesn't *really* matter, just want to reply star to clients please
bad-example.com 4 months ago 8e74aecf 6b45c16c
··· 339 339 let app = app 340 340 .with( 341 341 Cors::new() 342 342 - .allow_origin("*") 342 342 + .allow_origin_regex("*") 343 343 .allow_methods([Method::GET]) 344 344 .allow_credentials(false), 345 345 )