diff options
Diffstat (limited to 'scripts/auth_flow.sh')
-rwxr-xr-x | scripts/auth_flow.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/auth_flow.sh b/scripts/auth_flow.sh index 8bba39532..5552349a5 100755 --- a/scripts/auth_flow.sh +++ b/scripts/auth_flow.sh @@ -5,10 +5,9 @@ set -eux SERVER_URL="http://localhost:8080" REDIRECT_URI="${SERVER_URL}" CLIENT_NAME="Test Application Name" - REGISTRATION_REASON="Testing whether or not this dang diggity thing works!" -REGISTRATION_EMAIL="test@example.org" -REGISTRATION_USERNAME="test_user" +REGISTRATION_USERNAME="${1}" +REGISTRATION_EMAIL="${2}" REGISTRATION_PASSWORD="very safe password 123" REGISTRATION_AGREEMENT="true" REGISTRATION_LOCALE="en" |