vereto-api/app/controllers/concerns/response.rb
2018-02-16 11:52:56 +00:00

5 lines
No EOL
107 B
Ruby

module Response
def json_response(object, status = :ok)
render json: object, status: status
end
end