mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
26 lines
584 B
Ruby
26 lines
584 B
Ruby
module Fog
|
|
module Identity
|
|
class OpenStack
|
|
class Real
|
|
|
|
def create_user_role(tenant_id, user_id, role_id)
|
|
request(
|
|
:expects => 200,
|
|
:method => 'PUT',
|
|
:path => "/tenants/#{tenant_id}/users/#{user_id}/roles/OS-KSADM/#{role_id}"
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
def create_user_role(tenant_id, user_id, role_id)
|
|
Excon::Response.new(
|
|
:body => { 'role' => self.data[:roles][role_id] },
|
|
:status => 200
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|