6 lines
No EOL
137 B
Ruby
6 lines
No EOL
137 B
Ruby
class Api::V1::JobsController < Api::V1::ApiController
|
|
def all
|
|
@jobs = Job.all()
|
|
render :all, status: :ok
|
|
end
|
|
end |