Pull cc.xml URL generation into a helper.

Makes it easier to overwrite in pro-web for tokenized URLs.
This commit is contained in:
Mathias Meyer 2014-05-13 08:30:04 +02:00
parent 6d54d9979f
commit 494871fe5a
2 changed files with 4 additions and 1 deletions

View File

@ -51,5 +51,5 @@
)
ccxmlStatusUrl: (->
"#{Travis.config.api_endpoint}/repos/#{@slug}/cc.xml"
Travis.Urls.ccXml(@slug)
)

View File

@ -23,6 +23,9 @@
statusImage: (slug, branch) ->
"#{location.protocol}//#{location.host}/#{slug}.svg" + if branch then "?branch=#{branch}" else ''
ccXml: (slug) ->
"#{Travis.config.api_endpoint}/repos/#{slug}/cc.xml"
email: (email) ->
"mailto:#{email}"