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/openstack/requests/identity/update_user.rb

37 lines
805 B
Ruby
Raw Normal View History

module Fog
module Identity
class OpenStack
class Real
def update_user(user_id, options = {})
url = options.delete('url') || "/users/#{user_id}"
request(
:body => MultiJson.encode({ 'user' => options }),
:expects => 200,
:method => 'PUT',
:path => url
)
end
end
class Mock
def update_user(user_id, options)
response = Excon::Response.new
2012-05-28 17:45:22 -04:00
if user = self.data[:users][user_id]
if options['name']
user['name'] = options['name']
end
response.status = 200
response
else
raise Fog::Identity::OpenStack::NotFound
end
end
end
end
end
end