1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/requests/identity/delete_user.rb

15 lines
274 B
Ruby

module Fog
module Rackspace
class Identity
class Real
def delete_user(user_id)
request(
:expects => [204],
:method => 'DELETE',
:path => "users/#{user_id}"
)
end
end
end
end
end