Send CORS wildcard, allow editing of non-accepted team members (#299)

This commit is contained in:
Geometrically
2022-02-15 13:09:10 -07:00
committed by GitHub
parent 4498b89ac4
commit d128f3e14e
2 changed files with 3 additions and 2 deletions

View File

@@ -243,7 +243,8 @@ async fn main() -> std::io::Result<()> {
.allow_any_origin()
.allow_any_header()
.allow_any_method()
.max_age(3600),
.max_age(3600)
.send_wildcard(),
)
.wrap(
RateLimiter::new(MemoryStoreActor::from(store.clone()).start())