From a78d812263c79d36054f62d41b3f69eb183fee04 Mon Sep 17 00:00:00 2001 From: dwithana Date: Thu, 6 Jun 2024 08:42:56 -0700 Subject: [PATCH] Add content search endpoint to CORS allowlist --- config/application.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/config/application.rb b/config/application.rb index 562c2af5ae..ad448a4452 100644 --- a/config/application.rb +++ b/config/application.rb @@ -52,6 +52,7 @@ class Application < Rails::Application resource '/master_files/*/supplemental_files/*', headers: :any, methods: [:get] resource '/playlists/*/manifest.json', headers: :any, credentials: true, methods: [:get] resource '/timelines/*/manifest.json', headers: :any, methods: [:get, :post] + resource '/master_files/*/search', headers: :any, methods: [:get] end end