fix(emails): remove /v1/ api prefix (#1605); r=rfk

Fixes #1059
This commit is contained in:
Vlad Filippov 2017-01-02 14:38:43 -05:00 коммит произвёл Ryan Kelly
Родитель dbde37dadf
Коммит 5e99cf3970
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -576,8 +576,8 @@ conf.validate({ strict: true })
conf.set('domain', url.parse(conf.get('publicUrl')).host)
// derive fxa-auth-mailer configuration from our content-server url
conf.set('smtp.verificationUrl', conf.get('contentServer.url') + '/v1/verify_email')
conf.set('smtp.passwordResetUrl', conf.get('contentServer.url') + '/v1/complete_reset_password')
conf.set('smtp.verificationUrl', conf.get('contentServer.url') + '/verify_email')
conf.set('smtp.passwordResetUrl', conf.get('contentServer.url') + '/complete_reset_password')
conf.set('smtp.initiatePasswordResetUrl', conf.get('contentServer.url') + '/reset_password')
conf.set('smtp.initiatePasswordChangeUrl', conf.get('contentServer.url') + '/settings/change_password')
conf.set('smtp.verifyLoginUrl', conf.get('contentServer.url') + '/complete_signin')