From db13d4195a3400525e3a256471f090488ec5d56f Mon Sep 17 00:00:00 2001 From: Michael <33117529+mtelgkamp@users.noreply.github.com> Date: Thu, 9 Jan 2020 13:18:27 +0100 Subject: [PATCH] Fix typo in sample configuration Add missing comma in configuration example. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1ffe7bb..daf1182 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Mfc\OAuth2\ResourceServer\Registry::addServer( 'gitlabAdminUserLevel' => \Mfc\OAuth2\ResourceServer\GitLab::USER_LEVEL_DEVELOPER, // User level at which the user will be given admin permissions 'gitlabDefaultGroups' => '0', // Groups to assign to the User (comma separated list possible) 'gitlabUserOption' => 0, // UserConfig - 'blockExternalUser' => false // Blocks users with flag external from access the backend + 'blockExternalUser' => false, // Blocks users with flag external from access the backend 'projectName' => 'your/repo', // the repository from which user information is fetched ], ]