Commit 90d679fb authored by Luke "Jared" Bennett's avatar Luke "Jared" Bennett

Fix api.js ldap_groups function to use Promise API rather than jq Deferred API

parent 842aebb9
...@@ -172,8 +172,7 @@ const Api = { ...@@ -172,8 +172,7 @@ const Api = {
active: true, active: true,
}), }),
dataType: 'json', dataType: 'json',
}) }).then(groups => callback(groups));
.done(groups => callback(groups));
}, },
buildUrl(url) { buildUrl(url) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment