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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
8133e449
Commit
8133e449
authored
Jan 08, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hack for migrating to new settings
parent
57a65ede
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
config/initializers/8_application_settings.rb
config/initializers/8_application_settings.rb
+1
-2
lib/gitlab/current_settings.rb
lib/gitlab/current_settings.rb
+11
-1
No files found.
config/initializers/8_application_settings.rb
View file @
8133e449
begin
if
ActiveRecord
::
Base
.
connection
.
table_exists?
(
'application_settings'
)
unless
ApplicationSetting
.
any?
ApplicationSetting
.
create
(
default_projects_limit:
Settings
.
gitlab
[
'default_projects_limit'
],
...
...
@@ -8,5 +8,4 @@ begin
sign_in_text:
Settings
.
extra
[
'sign_in_text'
],
)
end
rescue
end
lib/gitlab/current_settings.rb
View file @
8133e449
module
Gitlab
module
CurrentSettings
def
current_application_settings
ApplicationSetting
.
current
if
ActiveRecord
::
Base
.
connection
.
table_exists?
(
'application_settings'
)
ApplicationSetting
.
current
else
OpenStruct
.
new
(
default_projects_limit:
Settings
.
gitlab
[
'default_projects_limit'
],
signup_enabled:
Settings
.
gitlab
[
'signup_enabled'
],
signin_enabled:
Settings
.
gitlab
[
'signin_enabled'
],
gravatar_enabled:
Settings
.
gravatar
[
'enabled'
],
sign_in_text:
Settings
.
extra
[
'sign_in_text'
],
)
end
end
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