Judge0Tsting / app /controllers /statuses_controller.rb
AdityaSharmaTech's picture
Upload 177 files
def1299 verified
raw
history blame contribute delete
134 Bytes
class StatusesController < ApplicationController
def index
render json: Status.all, each_serializer: StatusSerializer
end
end