travis-api/lib/travis/api/app/endpoint/accounts.rb
2012-09-29 20:48:31 +02:00

12 lines
204 B
Ruby

require 'travis/api/app'
class Travis::Api::App
class Endpoint
class Accounts < Endpoint
get '/', scope: :private do
body all(params).run, type: :accounts
end
end
end
end