Skip to content

Commit

Permalink
#224 - Fix CORS release allowed origin.
Browse files Browse the repository at this point in the history
  • Loading branch information
maraf committed Apr 26, 2019
1 parent 2943888 commit d45a23e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Money.Api/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env)
#if DEBUG
p.WithOrigins("http://localhost:48613");
#else
p.WithOrigins("https://api.money.neptuo.com");
p.WithOrigins("https://app.money.neptuo.com");
#endif
p.AllowAnyMethod();
p.AllowCredentials();
Expand Down

0 comments on commit d45a23e

Please sign in to comment.