1
0
Fork 0
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:
Wesley Beary 2016-03-29 09:54:49 -05:00
commit db0751555a

View file

@ -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