Skip to content

Commit

Permalink
- Removed CORS restrictions from SourcesController
Browse files Browse the repository at this point in the history
  • Loading branch information
Eukon05 committed Dec 22, 2024
1 parent 0777b0f commit 2bb7358
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

@RestController
@RequestMapping("/api/v1/sources")
@CrossOrigin(origins = {"http://localhost:3000", "http://127.0.0.1:3000"})
@CrossOrigin
@Tag(name = "Sources", description = "API methods exposing details about article sources used by infodb")
class SourcesController {
private final List<ArticleSourceInfo> sourceInfoList;
Expand Down

0 comments on commit 2bb7358

Please sign in to comment.