BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
22ade6e7
Commit
22ade6e7
authored
Oct 11, 2017
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '38720-sort-admin-runners' into 'master'
Add sort runners on admin runners Closes #38720 See merge request gitlab-org/gitlab-ce!14661
parents
1faa97b2
6aff4984
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
runners_controller.rb
app/controllers/admin/runners_controller.rb
+2
-1
index.html.haml
app/views/admin/runners/index.html.haml
+1
-1
38720-sort-admin-runners.yml
changelogs/unreleased/38720-sort-admin-runners.yml
+5
-0
No files found.
app/controllers/admin/runners_controller.rb
View file @
22ade6e7
...
...
@@ -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
...
...
app/views/admin/runners/index.html.haml
View file @
22ade6e7
...
...
@@ -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
|
...
...
changelogs/unreleased/38720-sort-admin-runners.yml
0 → 100644
View file @
22ade6e7
---
title
:
Add sort runners on admin runners
merge_request
:
14661
author
:
Takuya Noguchi
type
:
added
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment