Merge pull request #971 from maranda/stretch-unstable

mod_storage_ldap: change :users() to :nodes().
This commit is contained in:
Alexandre Aubin 2020-05-07 04:09:29 +02:00 committed by GitHub
commit 7e8996ecfe
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