diff options
author | multiple creatures <dev@multiple-creature.party> | 2020-01-11 02:41:35 -0600 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2020-01-11 02:41:35 -0600 |
commit | ff67dbed2b2878ba0d8032bdde08e06bc0eead3e (patch) | |
tree | 805919a162596e67dc8803f9db7892eefc289ea4 /app/controllers/api/v2 | |
parent | d9a9a18afae94ec0a2160e746265e47d7b639eaf (diff) |
pass monsterfork api exposure setting to all serializers + add `MONSTERFORK_API_FORCE_*` env vars to set api compatability modes for clients/apps
Diffstat (limited to 'app/controllers/api/v2')
-rw-r--r-- | app/controllers/api/v2/search_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v2/search_controller.rb b/app/controllers/api/v2/search_controller.rb index 9aa6edc69..815c04cef 100644 --- a/app/controllers/api/v2/search_controller.rb +++ b/app/controllers/api/v2/search_controller.rb @@ -3,6 +3,6 @@ class Api::V2::SearchController < Api::V1::SearchController def index @search = Search.new(search_results) - render json: @search, serializer: REST::V2::SearchSerializer + render json: @search, serializer: REST::V2::SearchSerializer, monsterfork_api: monsterfork_api end end |