Commit b9bfe2004cea615526b0d5bfd499b786fa144e30
1 parent
2b1f4c6d
Exists in
master
and in
1 other branch
delegate tracker url
The apps index calls Tracker#url which doesn't exist. It should be delegated to the underlying tracker instance. https://github.com/errbit/errbit/blob/features/extract_issue_tracker/app/views/apps/index.html.haml#L40
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
app/models/issue_tracker.rb
| @@ -31,4 +31,5 @@ class IssueTracker | @@ -31,4 +31,5 @@ class IssueTracker | ||
| 31 | delegate :create_issue, :to => :tracker | 31 | delegate :create_issue, :to => :tracker |
| 32 | delegate :label, :to => :tracker | 32 | delegate :label, :to => :tracker |
| 33 | delegate :comments_allowed?, :to => :tracker | 33 | delegate :comments_allowed?, :to => :tracker |
| 34 | + delegate :url, :to => :tracker | ||
| 34 | end | 35 | end |