mirror of
https://github.com/plashchynski/crono.git
synced 2026-03-26 11:21:42 +01:00
12 lines
195 B
Ruby
12 lines
195 B
Ruby
module Crono
|
|
class JobsController < ApplicationController
|
|
def index
|
|
@jobs = Crono::CronoJob.all
|
|
end
|
|
|
|
def show
|
|
@job = Crono::CronoJob.find(params[:id])
|
|
end
|
|
end
|
|
end
|