1.1pre1
This commit is contained in:
parent
3a2b273316
commit
6b030fd41d
83 changed files with 1089 additions and 136 deletions
8
config/initializers/grit_ext.rb
Normal file
8
config/initializers/grit_ext.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
require 'grit'
|
||||
require 'pygments'
|
||||
require "utils"
|
||||
|
||||
Grit::Blob.class_eval do
|
||||
include Utils::FileHelper
|
||||
include Utils::Colorize
|
||||
end
|
|
@ -13,6 +13,7 @@ Gitlab::Application.routes.draw do
|
|||
get "errors/gitosis"
|
||||
get "profile/password", :to => "profile#password"
|
||||
put "profile/password", :to => "profile#password_update"
|
||||
put "profile/edit", :to => "profile#social_update"
|
||||
get "profile", :to => "profile#show"
|
||||
#get "profile/:id", :to => "profile#show"
|
||||
|
||||
|
@ -38,6 +39,8 @@ Gitlab::Application.routes.draw do
|
|||
}
|
||||
|
||||
end
|
||||
|
||||
resources :snippets
|
||||
resources :commits
|
||||
resources :team_members
|
||||
resources :issues do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue