Skip to content

Added support for node 4.3 and some documentation to Authentication.js #513

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 30, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions Parse-Dashboard/Authentication.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
"use strict";

/**
* Constructor for Authentication class
*
* @class Authentication
* @param {Object[]} validUsers
* @param {boolean} useEncryptedPasswords
*/
function Authentication(validUsers, useEncryptedPasswords) {
this.validUsers = validUsers;
this.useEncryptedPasswords = useEncryptedPasswords || false;
}

Authentication.prototype.authenticate = function (userToTest) {
/**
* Authenticates the `userToTest`
*
* @param {Object} userToTest
* @returns {Object} Object with `isAuthenticated` and `appsUserHasAccessTo` properties
*/
function authenticate(userToTest) {
let bcrypt = require('bcryptjs');

var appsUserHasAccessTo = null;
Expand All @@ -29,6 +43,8 @@ Authentication.prototype.authenticate = function (userToTest) {
isAuthenticated,
appsUserHasAccessTo
};
};
}

Authentication.prototype.authenticate = authenticate;

module.exports = Authentication;