Update syntax to match Rails `content_mime_type`

This commit is contained in:
Lee Quarella 2021-01-29 10:25:45 -05:00
Родитель 4a60b3d1e0
Коммит c7ab6e21cd
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -66,7 +66,7 @@ module Chatops
def json_body
hash = {}
if request.content_type =~ %r/\Aapplication\/json\Z/i
if request.content_mime_type == Mime[:json]
hash = ActiveSupport::JSON.decode(request.raw_post) || {}
end
hash.with_indifferent_access