mod_storage_ldap: change :users() to :nodes().

That reflects changes to storagemanager API in 3.14.0.
This commit is contained in:
Marco Cirillo 2020-05-03 16:40:24 +02:00 committed by GitHub
parent cab6fb8b78
commit 0b1103faf8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -228,7 +228,7 @@ function driver:stores(username, type, pattern)
return nil, "not implemented";
end
function driver:store_exists(username, datastore, type)
function driver:store_exists(username, type)
return nil, "not implemented";
end
@ -236,7 +236,7 @@ function driver:purge(username)
return nil, "not implemented";
end
function driver:users()
function driver:nodes(type)
return nil, "not implemented";
end