mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Removing trailing slashes from method calls for 1.8.7
This commit is contained in:
parent
3022a275e8
commit
37eda0617e
5 changed files with 5 additions and 5 deletions
|
@ -8,7 +8,7 @@ module Fog
|
|||
request(
|
||||
:expects => [200],
|
||||
:method => 'GET',
|
||||
:path => "groups/#{group_id}/config",
|
||||
:path => "groups/#{group_id}/config"
|
||||
)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -8,7 +8,7 @@ module Fog
|
|||
request(
|
||||
:expects => [200],
|
||||
:method => 'GET',
|
||||
:path => "groups/#{group_id}/state",
|
||||
:path => "groups/#{group_id}/state"
|
||||
)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -8,7 +8,7 @@ module Fog
|
|||
request(
|
||||
:expects => [200],
|
||||
:method => 'GET',
|
||||
:path => "groups/#{group_id}/launch",
|
||||
:path => "groups/#{group_id}/launch"
|
||||
)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -8,7 +8,7 @@ module Fog
|
|||
request(
|
||||
:expects => [200],
|
||||
:method => 'GET',
|
||||
:path => "groups/#{group_id}/policies/#{policy_id}",
|
||||
:path => "groups/#{group_id}/policies/#{policy_id}"
|
||||
)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -8,7 +8,7 @@ module Fog
|
|||
request(
|
||||
:expects => [200],
|
||||
:method => 'GET',
|
||||
:path => "groups/#{group_id}/policies/#{policy_id}/webhooks/#{webhook_id}",
|
||||
:path => "groups/#{group_id}/policies/#{policy_id}/webhooks/#{webhook_id}"
|
||||
)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue