mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Merge pull request #3868 from jjasghar/remove_filters
Removed 'filters' from ssh_key all method
This commit is contained in:
commit
db0751555a
1 changed files with 2 additions and 2 deletions
|
@ -14,9 +14,9 @@ module Fog
|
|||
# @raise [Fog::Compute::DigitalOceanV2::ServiceError]
|
||||
# @see https://developers.digitalocean.com/documentation/v2/#list-all-keys
|
||||
def all(filters={})
|
||||
data = service.list_ssh_keys(filters)
|
||||
data = service.list_ssh_keys()
|
||||
links = data.body["links"]
|
||||
get_paged_links(links)
|
||||
get_paged_links(links)
|
||||
keys = data.body["ssh_keys"]
|
||||
load(keys)
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue