Commit b9bfe2004cea615526b0d5bfd499b786fa144e30

Authored by Stephen Crosby
1 parent 2b1f4c6d
Exists in master and in 1 other branch production

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 31 delegate :create_issue, :to => :tracker
32 32 delegate :label, :to => :tracker
33 33 delegate :comments_allowed?, :to => :tracker
  34 + delegate :url, :to => :tracker
34 35 end
... ...