11 lines
133 B
Ruby
11 lines
133 B
Ruby
|
class JobsController < ApplicationController
|
||
|
layout 'windows'
|
||
|
|
||
|
def list
|
||
|
@jobs = Job.find_all()
|
||
|
end
|
||
|
|
||
|
def stop
|
||
|
end
|
||
|
end
|