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/create_user.rb

25 lines
608 B
Ruby

module Fog
module Rackspace
class Identity
class Real
def create_user(username, email, enabled, options = {})
data = {
'user' => {
'username' => username,
'email' => email,
'enabled' => enabled
}
}
data['user']['OS-KSADM:password'] = options[:password] unless options[:password].nil?
request(
:body => Fog::JSON.encode(data),
:expects => [201],
:method => 'POST',
:path => 'users'
)
end
end
end
end
end