Timestamp in UTC, abstract storage

This commit is contained in:
Gregory Eremin
2013-06-07 12:32:50 +04:00
parent 861c12aa32
commit c6f0f2480d
14 changed files with 84 additions and 32 deletions
@@ -1,7 +1,7 @@
module BurdenWeb
class RunsController < ApplicationController
def index
@runs = Burden::Storage.run.where(name: params[:task_id]).order('created_at desc').limit(100)
@runs = Burden::Storage.run.history(params[:task_id])
end
end
end