Merge pull request #3022 from betagouv/fix-3015-conversion-tracking
Fix 3015 conversion tracking
This commit is contained in:
commit
22a9ca46da
3 changed files with 4 additions and 4 deletions
|
@ -18,7 +18,7 @@ class DemandesController < ApplicationController
|
|||
demande_params[:deadline]
|
||||
)
|
||||
flash.notice = 'Votre demande a bien été enregistrée, nous vous contacterons rapidement.'
|
||||
redirect_to administration_path
|
||||
redirect_to administration_path(formulaire_demande_compte_admin_submitted: true)
|
||||
end
|
||||
|
||||
private
|
||||
|
|
|
@ -13,7 +13,7 @@ class SupportController < ApplicationController
|
|||
elsif create_conversation
|
||||
flash.notice = "Votre message a été envoyé."
|
||||
|
||||
redirect_to root_path
|
||||
redirect_to root_path(formulaire_contact_general_submitted: true)
|
||||
else
|
||||
setup_context
|
||||
flash.now.alert = "Une erreur est survenue. Vous pouvez nous contactez à #{helpers.mail_to(CONTACT_EMAIL)}."
|
||||
|
|
|
@ -61,7 +61,7 @@ describe SupportController, type: :controller do
|
|||
}
|
||||
|
||||
expect(flash[:notice]).to match('Votre message a été envoyé.')
|
||||
expect(response).to redirect_to root_path
|
||||
expect(response).to redirect_to root_path(formulaire_contact_general_submitted: true)
|
||||
end
|
||||
|
||||
context "with dossier" do
|
||||
|
@ -80,7 +80,7 @@ describe SupportController, type: :controller do
|
|||
}
|
||||
|
||||
expect(flash[:notice]).to match('Votre message a été envoyé.')
|
||||
expect(response).to redirect_to root_path
|
||||
expect(response).to redirect_to root_path(formulaire_contact_general_submitted: true)
|
||||
end
|
||||
|
||||
context "en_construction" do
|
||||
|
|
Loading…
Reference in a new issue