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