From 1646fbd2a0fb2a9e83201ff09497f03359bd2b3f Mon Sep 17 00:00:00 2001 From: garrettmills Date: Sun, 18 Oct 2020 13:51:50 -0500 Subject: [PATCH] Fix CoreID userid mapping (#9) --- config/auth.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/auth.config.js b/config/auth.config.js index 2dcc45a..4e7951c 100644 --- a/config/auth.config.js +++ b/config/auth.config.js @@ -159,7 +159,7 @@ const auth_config = { // Mapping of user model attributes to OAuth2 return data from the endpoint // Note that uuid is not allowed, and uid is required attributes: { - uid: 'username', + uid: 'uid', first_name: 'first_name', last_name: 'last_name', email: 'email',