I want my API to accept only `application/json` as a Content-Type. Reading the docs it seems that this should do the work: ``` class BaseApi < Grape::API format :json prefix :api end ``` but my API still accept other Content-Types