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
34547732
Commit
34547732
authored
Jun 10, 2016
by
Gabriel Mazetto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Display flash notice about Geo node on all admin screens
parent
00ec40e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
app/controllers/admin/application_controller.rb
app/controllers/admin/application_controller.rb
+8
-0
No files found.
app/controllers/admin/application_controller.rb
View file @
34547732
...
...
@@ -2,10 +2,18 @@
#
# Automatically sets the layout and ensures an administrator is logged in
class
Admin::ApplicationController
<
ApplicationController
include
ActionView
::
Helpers
::
UrlHelper
before_action
:authenticate_admin!
before_action
:display_geo_information
layout
'admin'
def
authenticate_admin!
render_404
unless
current_user
.
is_admin?
end
def
display_geo_information
return
unless
Gitlab
::
Geo
.
secondary?
primary_node
=
link_to
(
'primary node'
,
Gitlab
::
Geo
.
primary_node
.
url
)
flash
.
now
[
:notice
]
=
"You are in a Geo secondary node (read-only). To make any change you must visit the
#{
primary_node
}
."
.
html_safe
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