Skip to content

Commit

Permalink
cleanup code
Browse files Browse the repository at this point in the history
  • Loading branch information
tinohager committed May 31, 2024
1 parent f834ed4 commit 5137f36
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions src/Nager.PublicSuffixService/Nager.PublicSuffixService.http
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,9 @@ GET {{Nager.PublicSuffix.WebApi_HostAddress}}/DomainInfo/s3-1.amazonaws.com/
Accept: application/json

###


OPTIONS {{Nager.PublicSuffix.WebApi_HostAddress}}/DomainInfo/s3-1.amazonaws.com/
Accept: application/json

###
4 changes: 2 additions & 2 deletions src/Nager.PublicSuffixService/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
configuration.AddPolicy(corsPolicyName, builder =>
{
builder.AllowAnyOrigin()
.AllowAnyMethod()
.AllowAnyHeader();
.AllowAnyMethod()
.AllowAnyHeader();
})
);

Expand Down

0 comments on commit 5137f36

Please sign in to comment.