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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
ec337276
Commit
ec337276
authored
Oct 17, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'issue_tracker' of /home/git/repositories/gitlab/gitlabhq
parents
fd39c80f
52739518
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
3 deletions
+45
-3
app/helpers/issues_helper.rb
app/helpers/issues_helper.rb
+12
-3
spec/helpers/issues_helper_spec.rb
spec/helpers/issues_helper_spec.rb
+33
-0
No files found.
app/helpers/issues_helper.rb
View file @
ec337276
...
...
@@ -16,7 +16,7 @@ module IssuesHelper
def
url_for_project_issues
return
""
if
@project
.
nil?
if
@project
.
used_default_issues_tracker?
if
@project
.
used_default_issues_tracker?
||
!
external_issues_tracker_enabled?
project_issues_path
(
@project
)
else
url
=
Gitlab
.
config
.
issues_tracker
[
@project
.
issues_tracker
][
"project_url"
]
...
...
@@ -28,7 +28,7 @@ module IssuesHelper
def
url_for_new_issue
return
""
if
@project
.
nil?
if
@project
.
used_default_issues_tracker?
if
@project
.
used_default_issues_tracker?
||
!
external_issues_tracker_enabled?
url
=
new_project_issue_path
project_id:
@project
else
url
=
Gitlab
.
config
.
issues_tracker
[
@project
.
issues_tracker
][
"new_issue_url"
]
...
...
@@ -40,7 +40,7 @@ module IssuesHelper
def
url_for_issue
(
issue_iid
)
return
""
if
@project
.
nil?
if
@project
.
used_default_issues_tracker?
if
@project
.
used_default_issues_tracker?
||
!
external_issues_tracker_enabled?
url
=
project_issue_url
project_id:
@project
,
id:
issue_iid
else
url
=
Gitlab
.
config
.
issues_tracker
[
@project
.
issues_tracker
][
"issues_url"
]
...
...
@@ -59,4 +59,13 @@ module IssuesHelper
""
end
end
# Checks if issues_tracker setting exists in gitlab.yml
def
external_issues_tracker_enabled?
if
Gitlab
.
config
.
issues_tracker
&&
Gitlab
.
config
.
issues_tracker
.
values
.
any?
true
else
false
end
end
end
spec/helpers/issues_helper_spec.rb
View file @
ec337276
...
...
@@ -47,6 +47,17 @@ describe IssuesHelper do
url_for_project_issues
.
should
eq
""
end
describe
"when external tracker was enabled and then config removed"
do
before
do
@project
=
ext_project
Gitlab
.
config
.
stub
(
:issues_tracker
).
and_return
(
nil
)
end
it
"should return path to internal tracker"
do
url_for_project_issues
.
should
match
(
polymorphic_path
([
@project
]))
end
end
end
describe
:url_for_issue
do
...
...
@@ -75,6 +86,17 @@ describe IssuesHelper do
url_for_issue
(
issue
.
iid
).
should
eq
""
end
describe
"when external tracker was enabled and then config removed"
do
before
do
@project
=
ext_project
Gitlab
.
config
.
stub
(
:issues_tracker
).
and_return
(
nil
)
end
it
"should return internal path"
do
url_for_issue
(
issue
.
iid
).
should
match
(
polymorphic_path
([
@project
,
issue
]))
end
end
end
describe
:url_for_new_issue
do
...
...
@@ -101,6 +123,17 @@ describe IssuesHelper do
url_for_new_issue
.
should
eq
""
end
describe
"when external tracker was enabled and then config removed"
do
before
do
@project
=
ext_project
Gitlab
.
config
.
stub
(
:issues_tracker
).
and_return
(
nil
)
end
it
"should return internal path"
do
url_for_new_issue
.
should
match
(
new_project_issue_path
(
@project
))
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