diff --git a/app/controllers/welcome_controller.rb b/app/controllers/welcome_controller.rb index 9fa9bf1f2..104071487 100644 --- a/app/controllers/welcome_controller.rb +++ b/app/controllers/welcome_controller.rb @@ -5,7 +5,7 @@ class WelcomeController < ApplicationController before_action :set_user_recommendations, only: :index, if: :current_user before_action :authenticate_user!, only: :welcome - layout "devise", only: [:welcome, :verification] + layout "devise", only: :welcome def index @header = Widget::Card.header.first @@ -26,10 +26,6 @@ class WelcomeController < ApplicationController end end - def verification - redirect_to verification_path if signed_in? - end - private def set_user_recommendations diff --git a/app/views/welcome/verification.html.erb b/app/views/welcome/verification.html.erb deleted file mode 100644 index 6642c14e0..000000000 --- a/app/views/welcome/verification.html.erb +++ /dev/null @@ -1,14 +0,0 @@ -

<%= t("welcome.verification.title") %>

- -
-

<%= t("welcome.verification.question", org_name: setting["org_name"]) %>

-
-
-
- <%= link_to(t("welcome.verification.i_have_an_account"), verification_path, class: "button success radius expand") %> -
-
- <%= link_to(t("welcome.verification.i_dont_have_an_account"), new_user_registration_path(use_redeemable_code: true), class: "button radius expand") %> -
-
-
diff --git a/config/locales/en/general.yml b/config/locales/en/general.yml index e8c5006f6..6758c457c 100644 --- a/config/locales/en/general.yml +++ b/config/locales/en/general.yml @@ -892,11 +892,6 @@ en: budget_investments: title: Recommended investments slide: "See %{title}" - verification: - i_dont_have_an_account: I don't have an account - i_have_an_account: I already have an account - question: Do you already have an account in %{org_name}? - title: Account verification welcome: go_to_index: Not now, go to index page start_using_consul: Go to index page diff --git a/config/locales/es/general.yml b/config/locales/es/general.yml index 34f132ada..e802f7178 100644 --- a/config/locales/es/general.yml +++ b/config/locales/es/general.yml @@ -892,11 +892,6 @@ es: budget_investments: title: Presupuestos recomendados slide: "Ver %{title}" - verification: - i_dont_have_an_account: No tengo cuenta, quiero crear una y verificarla - i_have_an_account: Ya tengo una cuenta que quiero verificar - question: '¿Tienes ya una cuenta en %{org_name}?' - title: Verificación de cuenta welcome: go_to_index: Ahora no, ir a la página de inicio start_using_consul: Ir a la página de inicio diff --git a/public/docs/directrices_ejercicio_propuesta.pdf b/public/docs/directrices_ejercicio_propuesta.pdf deleted file mode 100644 index 9afc178ef..000000000 Binary files a/public/docs/directrices_ejercicio_propuesta.pdf and /dev/null differ diff --git a/public/docs/formulario_propuestas_ciudadanas.pdf b/public/docs/formulario_propuestas_ciudadanas.pdf deleted file mode 100644 index f8296d9c5..000000000 Binary files a/public/docs/formulario_propuestas_ciudadanas.pdf and /dev/null differ