Sha256: 7a71f8b93e533be585d654029a32445b4c1bec35a154b8ef02ca139d6ee37d53
Contents?: true
Size: 574 Bytes
Versions: 8
Compression:
Stored size: 574 Bytes
Contents
# Index and show controller for TaskRuns # TaskRuns should not be created or edited here because they are generate by rake tasks class TrackableTasks::TaskRunsController < ApplicationController # Lists all tasks in task run def index @task_runs = TrackableTasks::TaskRun.all respond_to do |format| format.html # index.html.erb end end # Lists specific task run def show @task_run = TrackableTasks::TaskRun.find_by_id(params[:id]) respond_to do |format| format.html # show.html.erb end end end
Version data entries
8 entries across 8 versions & 1 rubygems