From 12dd96e34c7f33f09c2b74743151e8b0a38719f4 Mon Sep 17 00:00:00 2001 From: Alex Turchyn Date: Sat, 26 Aug 2023 01:24:14 +0300 Subject: [PATCH] bring back sign up path --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index 7d2ead41..3d06bd50 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -16,8 +16,8 @@ Rails.application.routes.draw do devise_scope :user do if Docuseal.multitenant? + resource :registration, only: %i[show], path: 'sign_up' unauthenticated do - resource :registration, only: %i[show], path: 'sign_up' resource :registration, only: %i[create], path: 'new' do get '' => :new, as: :new end