PipelinesFinder use git cached data
This commit is contained in:
parent
3611ee5663
commit
4c89cd4b73
2 changed files with 3 additions and 2 deletions
|
@ -14,6 +14,7 @@ v 8.10.0 (unreleased)
|
||||||
- Exclude email check from the standard health check
|
- Exclude email check from the standard health check
|
||||||
- Fix changing issue state columns in milestone view
|
- Fix changing issue state columns in milestone view
|
||||||
- Fix user creation with stronger minimum password requirements !4054 (nathan-pmt)
|
- Fix user creation with stronger minimum password requirements !4054 (nathan-pmt)
|
||||||
|
- PipelinesFinder uses git cache data
|
||||||
- Check for conflicts with existing Project's wiki path when creating a new project.
|
- Check for conflicts with existing Project's wiki path when creating a new project.
|
||||||
- Remove unused front-end variable -> default_issues_tracker
|
- Remove unused front-end variable -> default_issues_tracker
|
||||||
- Add API endpoint for a group issues !4520 (mahcsig)
|
- Add API endpoint for a group issues !4520 (mahcsig)
|
||||||
|
|
|
@ -29,10 +29,10 @@ class PipelinesFinder
|
||||||
end
|
end
|
||||||
|
|
||||||
def branches
|
def branches
|
||||||
project.repository.branches.map(&:name)
|
project.repository.branch_names
|
||||||
end
|
end
|
||||||
|
|
||||||
def tags
|
def tags
|
||||||
project.repository.tags.map(&:name)
|
project.repository.tag_names
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue