5 lines
107 B
Ruby
5 lines
107 B
Ruby
|
|
module Response
|
||
|
|
def json_response(object, status = :ok)
|
||
|
|
render json: object, status: status
|
||
|
|
end
|
||
|
|
end
|