Commit b9e5d520f5f7275e1b1336c00338536b91ec4325

Authored by Evandro Junior
1 parent cca3d05f

add recaptcha key for staging server

Showing 2 changed files with 2 additions and 1 deletions   Show diff stats
gulp/build.js
... ... @@ -47,6 +47,7 @@ gulp.task('html', ['inject', 'partials'], function () {
47 47 .pipe($.if($.util.env.production, $.replace('$logProvider.debugEnabled(true);', '$logProvider.debugEnabled(false);')))
48 48 .pipe($.if($.util.env.production, $.replace('http://hom.dialoga.gov.br', 'http://dialoga.gov.br')))
49 49 .pipe($.if($.util.env.production, $.replace('http://hom.login.dialoga.gov.br', 'http://login.dialoga.gov.br')))
  50 + .pipe($.if($.util.env.production, $.replace('6LcLPAcTAAAAAKsd0bxY_TArhD_A7OL19SRCW7_i', '6LeDTRUTAAAAAA1VMOmIa2oqqWaPfXsv7J90r_49')))
50 51 // staging
51 52 .pipe($.if($.util.env.staging, $.replace('http://dialoga.gov.br', 'http://hom.dialoga.gov.br')))
52 53 .pipe($.if($.util.env.staging, $.replace('http://login.dialoga.gov.br', 'http://hom.login.dialoga.gov.br')))
... ...
src/app/index.constants.js
... ... @@ -11,7 +11,7 @@
11 11 .constant('APP', {
12 12 facebook_app_id: '1',
13 13 google_app_id: '4',
14   - recaptcha_key: '6LeDTRUTAAAAAA1VMOmIa2oqqWaPfXsv7J90r_49',
  14 + recaptcha_key: '6LcLPAcTAAAAAKsd0bxY_TArhD_A7OL19SRCW7_i',
15 15 })
16 16 .constant('API', {
17 17 token: null,
... ...