Skip to content

Commit

Permalink
add digits oauth provider (parse-community#2284)
Browse files Browse the repository at this point in the history
  • Loading branch information
ranhsd authored and Rafael Santos committed Mar 15, 2017
1 parent 6375b92 commit e92acdf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/authDataManager/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ let google = require("./google");
let github = require("./github");
let twitter = require("./twitter");
let spotify = require("./spotify");
let digits = require("./twitter"); // digits tokens are validated by twitter

let anonymous = {
validateAuthData: () => {
Expand All @@ -25,7 +26,8 @@ let providers = {
github,
twitter,
spotify,
anonymous
anonymous,
digits
}

module.exports = function(oauthOptions = {}, enableAnonymousUsers = true) {
Expand Down

0 comments on commit e92acdf

Please sign in to comment.