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 = {
active: true,
}),
dataType: 'json',
})
.done(groups => callback(groups));
}).then(groups => callback(groups));
},
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