Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
11818fe7
Commit
11818fe7
authored
Mar 16, 2017
by
Douglas Barbosa Alexandre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused presenter for GeoNode
parent
5a182357
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
16 deletions
+1
-16
app/controllers/admin/geo_nodes_controller.rb
app/controllers/admin/geo_nodes_controller.rb
+1
-2
app/presenters/geo_node_presenter.rb
app/presenters/geo_node_presenter.rb
+0
-14
No files found.
app/controllers/admin/geo_nodes_controller.rb
View file @
11818fe7
...
...
@@ -3,8 +3,7 @@ class Admin::GeoNodesController < Admin::ApplicationController
before_action
:load_node
,
only:
[
:destroy
,
:repair
,
:toggle
,
:status
]
def
index
# Ensure all nodes are using their Presenter
@nodes
=
GeoNode
.
all
.
map
(
&
:present
)
@nodes
=
GeoNode
.
all
@node
=
GeoNode
.
new
unless
Gitlab
::
Geo
.
license_allows?
...
...
app/presenters/geo_node_presenter.rb
deleted
100644 → 0
View file @
5a182357
class
GeoNodePresenter
<
Gitlab
::
View
::
Presenter
::
Delegated
presents
:geo_node
delegate
:healthy?
,
:health
,
:repositories_count
,
:repositories_synced_count
,
:repositories_synced_in_percentage
,
:repositories_failed_count
,
:lfs_objects_total
,
:lfs_objects_synced
,
:lfs_objects_synced_in_percentage
,
to: :status
private
def
status
@status
||=
Geo
::
NodeStatusService
.
new
.
call
(
geo_node
.
status_url
)
end
end
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