mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
25 lines
537 B
Ruby
25 lines
537 B
Ruby
|
module Fog
|
||
|
module Rackspace
|
||
|
class Identity
|
||
|
class Real
|
||
|
def update_user(user_id, username, email, enabled, options = {})
|
||
|
data = {
|
||
|
'user' => {
|
||
|
'username' => username,
|
||
|
'email' => email,
|
||
|
'enabled' => enabled
|
||
|
}
|
||
|
}
|
||
|
|
||
|
request(
|
||
|
:body => Fog::JSON.encode(data),
|
||
|
:expects => [200, 203],
|
||
|
:method => 'POST',
|
||
|
:path => "users/#{user_id}"
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|