Add app passwords feature

This commit is contained in:
Girish Ramakrishnan
2020-01-31 15:28:42 -08:00
parent e3878fa381
commit 3427db3983
17 changed files with 459 additions and 58 deletions

View File

@@ -723,7 +723,7 @@ describe('Users API', function () {
});
it('did change the user password', function (done) {
users.verify(user_0.id, 'bigenough', function (error) {
users.verify(user_0.id, 'bigenough', users.AP_WEBADMIN, function (error) {
expect(error).to.be(null);
done();
});