travis-api/lib/travis/api/app/endpoint/hooks.rb
2012-07-27 15:55:57 +02:00

15 lines
372 B
Ruby

require 'travis/api/app'
class Travis::Api::App
class Endpoint
# TODO: Add documentation.
class Hooks < Endpoint
# TODO: Add implementation and documentation.
get('/', scope: :private) { raise NotImplementedError }
# TODO: Add implementation and documentation.
put('/:id', scope: :admin) { raise NotImplementedError }
end
end
end