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

15 lines
378 B
Ruby

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