travis-api/lib/travis/api/app/service/workers.rb
2012-07-18 14:56:41 +02:00

15 lines
212 B
Ruby

module Travis
module Api
class App
class Service
class Workers < Service
def collection
Worker.order(:host, :name)
end
end
end
end
end
end