Merge branch 'master' of git://github.com/gitlabhq/gitlabhq
This commit is contained in:
commit
48443d20ca
114 changed files with 1524 additions and 1674 deletions
|
@ -44,5 +44,8 @@ module Gitlab
|
|||
|
||||
# Version of your assets, change this if you want to expire all your assets
|
||||
config.assets.version = '1.0'
|
||||
|
||||
# Add fonts
|
||||
config.assets.paths << "#{Rails.root}/app/assets/fonts"
|
||||
end
|
||||
end
|
||||
|
|
|
@ -23,7 +23,7 @@ app:
|
|||
default_projects_limit: 10
|
||||
# backup_path: "/vol/backups" # default: Rails.root + backups/
|
||||
# backup_keep_time: 604800 # default: 0 (forever) (in seconds)
|
||||
|
||||
# disable_gravatar: true # default: false - Disable user avatars from Gravatar.com
|
||||
|
||||
#
|
||||
# 2. Advanced settings:
|
||||
|
@ -39,7 +39,6 @@ git_host:
|
|||
receive_pack: true
|
||||
# port: 22
|
||||
|
||||
|
||||
# Git settings
|
||||
# Use default values unless you understand it
|
||||
git:
|
||||
|
|
|
@ -120,5 +120,8 @@ class Settings < Settingslogic
|
|||
omniauth['providers'] || []
|
||||
end
|
||||
|
||||
def disable_gravatar?
|
||||
app['disable_gravatar'] || false
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
#if defined?(Footnotes) && Rails.env.development?
|
||||
#Footnotes.run! # first of all
|
||||
#end
|
|
@ -30,6 +30,7 @@ Gitlab::Application.routes.draw do
|
|||
get 'help/web_hooks' => 'help#web_hooks'
|
||||
get 'help/system_hooks' => 'help#system_hooks'
|
||||
get 'help/markdown' => 'help#markdown'
|
||||
get 'help/ssh' => 'help#ssh'
|
||||
|
||||
#
|
||||
# Admin Area
|
||||
|
@ -196,7 +197,9 @@ Gitlab::Application.routes.draw do
|
|||
end
|
||||
resources :team_members
|
||||
resources :milestones
|
||||
resources :labels, :only => [:index]
|
||||
resources :issues do
|
||||
|
||||
collection do
|
||||
post :sort
|
||||
post :bulk_update
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue