travis-web/assets/scripts/app/controllers/requests.coffee
2015-01-30 09:10:48 +01:00

11 lines
266 B
CoffeeScript

Controller = Ember.ArrayController.extend
needs: ['repo']
repo: Ember.computed.alias('controllers.repo.repo')
lintUrl: (->
slug = @get('repo.slug')
"https://lint.travis-ci.org/#{slug}"
).property('repo.slug')
Travis.RequestsController = Controller