38 lines
895 B
Ruby
38 lines
895 B
Ruby
require 'travis/api/app'
|
|
|
|
class Travis::Api::App
|
|
class Endpoint
|
|
# TODO should this be /profile?
|
|
class Users < Endpoint
|
|
# Gives information about the currently logged in user.
|
|
#
|
|
# Example:
|
|
#
|
|
# {
|
|
# "user": {
|
|
# "name": "Sven Fuchs",
|
|
# "login": "svenfuchs",
|
|
# "email": "svenfuchs@artweb-design.de",
|
|
# "gravatar_id": "402602a60e500e85f2f5dc1ff3648ecb",
|
|
# "locale": "de",
|
|
# "is_syncing": false,
|
|
# "synced_at": "2012-08-14T22:11:21Z"
|
|
# }
|
|
# }
|
|
get '/:id?', scope: :private do
|
|
respond_with current_user
|
|
end
|
|
|
|
put '/:id?', scope: :private do
|
|
update(params[:user]).run
|
|
204
|
|
end
|
|
|
|
post '/sync', scope: :private do
|
|
service(:sync).run
|
|
204
|
|
end
|
|
end
|
|
end
|
|
end
|