Feat: Plex authentication #124

Merged
KevinMidboe merged 22 commits from feature/plex-authentication into master 2019-12-23 00:39:43 +00:00
Showing only changes of commit 5d3a5dc8a4 - Show all commits

View File

@@ -36,7 +36,6 @@ create(user) {
* @returns {Promise} * @returns {Promise}
*/ */
retrieveHash(user) { retrieveHash(user) {
console.log('retrieving hash for user', user)
return this.database.get(this.queries.retrieveHash, user.username) return this.database.get(this.queries.retrieveHash, user.username)
.then(row => { .then(row => {
assert(row, 'The user does not exist.'); assert(row, 'The user does not exist.');