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
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
100d750b
Commit
100d750b
authored
Mar 10, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add feature to disable version check
parent
73179685
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
5 deletions
+20
-5
app/controllers/admin/application_settings_controller.rb
app/controllers/admin/application_settings_controller.rb
+2
-1
app/views/admin/application_settings/_form.html.haml
app/views/admin/application_settings/_form.html.haml
+6
-0
app/views/admin/dashboard/index.html.haml
app/views/admin/dashboard/index.html.haml
+3
-2
app/views/help/index.html.haml
app/views/help/index.html.haml
+2
-1
db/migrate/20150310194358_add_version_check_to_application_settings.rb
...150310194358_add_version_check_to_application_settings.rb
+5
-0
db/schema.rb
db/schema.rb
+2
-1
No files found.
app/controllers/admin/application_settings_controller.rb
View file @
100d750b
...
...
@@ -28,7 +28,8 @@ class Admin::ApplicationSettingsController < Admin::ApplicationController
:gravatar_enabled
,
:twitter_sharing_enabled
,
:sign_in_text
,
:home_page_url
:home_page_url
,
:version_check_enabled
)
end
end
app/views/admin/application_settings/_form.html.haml
View file @
100d750b
...
...
@@ -24,6 +24,12 @@
.col-sm-10
=
f
.
check_box
:twitter_sharing_enabled
,
class:
'checkbox form-control'
,
:'aria-describedby'
=>
'twitter_help_block'
%span
.help-block
#twitter_help_block
Show users a button to share their newly created public or internal projects on twitter
.form-group
.col-sm-offset-2.col-sm-10
.checkbox
=
f
.
label
:version_check_enabled
do
=
f
.
check_box
:version_check_enabled
Version check enabled
%fieldset
%legend
Misc
.form-group
...
...
app/views/admin/dashboard/index.html.haml
View file @
100d750b
...
...
@@ -58,8 +58,9 @@
.col-md-4
%h4
Components
.pull-right
=
version_status_badge
-
if
current_application_settings
.
version_check_enabled
.pull-right
=
version_status_badge
%hr
%p
...
...
app/views/help/index.html.haml
View file @
100d750b
...
...
@@ -3,7 +3,8 @@
GitLab
%span
=
Gitlab
::
VERSION
%small
=
Gitlab
::
REVISION
=
version_status_badge
-
if
current_application_settings
.
version_check_enabled
=
version_status_badge
%p
.slead
GitLab is open source software to collaborate on code.
%br
...
...
db/migrate/20150310194358_add_version_check_to_application_settings.rb
0 → 100644
View file @
100d750b
class
AddVersionCheckToApplicationSettings
<
ActiveRecord
::
Migration
def
change
add_column
:application_settings
,
:version_check_enabled
,
:boolean
,
default:
true
end
end
db/schema.rb
View file @
100d750b
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
20150
225065047
)
do
ActiveRecord
::
Schema
.
define
(
version:
20150
310194358
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
@@ -27,6 +27,7 @@ ActiveRecord::Schema.define(version: 20150225065047) do
t
.
string
"home_page_url"
t
.
integer
"default_branch_protection"
,
default:
2
t
.
boolean
"twitter_sharing_enabled"
,
default:
true
t
.
boolean
"version_check_enabled"
,
default:
true
end
create_table
"broadcast_messages"
,
force:
true
do
|
t
|
...
...
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