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
Tatuya Kamada
gitlab-ce
Commits
b79d4c9b
Commit
b79d4c9b
authored
Nov 27, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'bug/default_branch_cached' of /home/git/repositories/gitlab/gitlabhq
parents
7e9e894d
e2e11670
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
app/contexts/projects/update_context.rb
app/contexts/projects/update_context.rb
+3
-1
app/models/project.rb
app/models/project.rb
+6
-1
No files found.
app/contexts/projects/update_context.rb
View file @
b79d4c9b
...
...
@@ -5,12 +5,14 @@ module Projects
params
[
:project
].
delete
(
:public
)
unless
can?
(
current_user
,
:change_public_mode
,
project
)
new_branch
=
params
[
:project
].
delete
(
:default_branch
)
if
project
.
repository
.
exists?
&&
new_branch
!=
project
.
repository
.
root_ref
if
project
.
repository
.
exists?
&&
new_branch
!=
project
.
default_branch
GitlabShellWorker
.
perform_async
(
:update_repository_head
,
project
.
path_with_namespace
,
new_branch
)
project
.
reload_default_branch
end
project
.
update_attributes
(
params
[
:project
],
as:
role
)
...
...
app/models/project.rb
View file @
b79d4c9b
...
...
@@ -26,7 +26,7 @@
class
Project
<
ActiveRecord
::
Base
include
Gitlab
::
ShellAdapter
extend
Enumerize
ActsAsTaggableOn
.
strict_case_match
=
true
attr_accessible
:name
,
:path
,
:description
,
:issues_tracker
,
:label_list
,
...
...
@@ -451,4 +451,9 @@ class Project < ActiveRecord::Base
def
default_branch
@default_branch
||=
repository
.
root_ref
if
repository
.
exists?
end
def
reload_default_branch
@default_branch
=
nil
default_branch
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