Add sort runners on admin runners

This commit is contained in:
Takuya Noguchi 2017-10-04 00:08:29 +09:00
parent 2828b7688f
commit 6aff498426
3 changed files with 8 additions and 2 deletions

View File

@ -2,7 +2,8 @@ class Admin::RunnersController < Admin::ApplicationController
before_action :runner, except: :index
def index
@runners = Ci::Runner.order('id DESC')
sort = params[:sort] == 'contacted_asc' ? { contacted_at: :asc } : { id: :desc }
@runners = Ci::Runner.order(sort)
@runners = @runners.search(params[:search]) if params[:search].present?
@runners = @runners.page(params[:page]).per(30)
@active_runners_cnt = Ci::Runner.online.count

View File

@ -63,7 +63,7 @@
%th Projects
%th Jobs
%th Tags
%th Last contact
%th= link_to 'Last contact', admin_runners_path(params.slice(:search).merge(sort: 'contacted_asc'))
%th
- @runners.each do |runner|

View File

@ -0,0 +1,5 @@
---
title: Add sort runners on admin runners
merge_request: 14661
author: Takuya Noguchi
type: added