Added paranetrized urls

parametrized urls for registration
/reset password and verification

Change-Id: I2748957adc92776dddf32b15cb650d8446b8b8a6
Depends-On: https://review.opendev.org/#/c/656395/
This commit is contained in:
smarcet 2019-04-29 17:09:58 -03:00
parent 24a7cb633f
commit f05f1b5a5f
2 changed files with 9 additions and 0 deletions

View File

@ -95,6 +95,10 @@ class openstackid (
$mysql_ssl_client_cert_file_contents = '',
$mysql_ssl_cypher = 'DHE-RSA-AES256-SHA',
$php_version = 5,
$lost_password_url = '',
$registration_url = '',
$registration_mobile_url = '',
$resend_verification_url = '',
) {
# php5 packages needed for openid server

View File

@ -72,3 +72,8 @@ LOG_EMAIL_LEVEL="<%= @app_log_email_level %>"
RECAPTCHA_PUBLIC_KEY="<%= @id_recaptcha_public_key %>"
RECAPTCHA_PRIVATE_KEY="<%= @id_recaptcha_private_key %>"
RECAPTCHA_TEMPLATE="<%= @id_recaptcha_template %>"
LOST_PASSWORD_URL="<%= @lost_password_url %>"
REGISTRATION_URL="<%= @registration_url %>"
REGISTRATION_MOBILE_URL="<%= @registration_mobile_url %>"
RESEND_VERIFICATION_URL="<%= @resend_verification_url %>"