Files
old-roraccounting/app/controllers/concerns/response.rb

10 lines
185 B
Ruby
Raw Normal View History

2019-06-20 22:47:39 +02:00
module Response
2019-06-21 20:01:43 +02:00
def error_response(status)
render nothing: true, status: status
end
2019-06-20 22:47:39 +02:00
def json_response(object, status = :ok)
render json: object, status: status
end
end