
In order to allow IDP upgrade from LV 4.x to LV 5.X (https://review.openstack.org/#/c/305521/) puppet and shell scripts were update to support diferent versions or laravel through config variable $laravel_version ( default value to version 4 so production would not get affected ). Change-Id: I76a7093f3c88c72256f638d5c56cc8799643b69d
23 lines
689 B
Plaintext
23 lines
689 B
Plaintext
<?php
|
|
return array(
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| API Keys
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Set the public and private API keys as provided by reCAPTCHA.
|
|
|
|
|
*/
|
|
'public_key' => '<%= @id_recaptcha_public_key %>',
|
|
'private_key' => '<%= @id_recaptcha_private_key %>',
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Template
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Set a template to use if you don't want to use the standard one.
|
|
|
|
|
*/
|
|
'template' => '<%= @id_recaptcha_template %>'
|
|
);
|