From 7b25a1f6c1f2bd065d5460960778b40f9370c886 Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Sun, 31 Oct 2021 11:06:07 +0530 Subject: [PATCH] fix: sample script --- .env.sample | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.sample b/.env.sample index 52a0d3d..1970573 100644 --- a/.env.sample +++ b/.env.sample @@ -9,4 +9,4 @@ ROLES=user DEFAULT_ROLES=user PROTECTED_ROLES=admin JWT_ROLE_CLAIM=role -function(user,tokenPayload){var data = tokenPayload;data.extra = {'x-extra-id': user.id};return data;} \ No newline at end of file +CUSTOM_ACCESS_TOKEN_SCRIPT=function(user,tokenPayload){var data = tokenPayload;data.extra = {'x-extra-id': user.id};return data;} \ No newline at end of file