From 328b96b862b166395007cd705de8a9315bc84e81 Mon Sep 17 00:00:00 2001 From: Sean Doyle Date: Sun, 29 Sep 2024 19:48:11 -0400 Subject: [PATCH] Rename Authentication template files Follow-up to [#53098][] The corresponding commit in `rails/rails` nested the template files (including the view templates) under an `app/` directory. This commit makes a corresponding change, nesting the `views/` templates under `app/views/`. [#53098]: https://github.com/rails/rails/pull/53098#issuecomment-2381650236 Co-authored-by: Jerome Dalbert --- .../templates/{ => app}/views/passwords/edit.html.erb | 0 .../templates/{ => app}/views/passwords/new.html.erb | 0 .../templates/{ => app}/views/sessions/new.html.erb | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename lib/generators/tailwindcss/authentication/templates/{ => app}/views/passwords/edit.html.erb (100%) rename lib/generators/tailwindcss/authentication/templates/{ => app}/views/passwords/new.html.erb (100%) rename lib/generators/tailwindcss/authentication/templates/{ => app}/views/sessions/new.html.erb (100%) diff --git a/lib/generators/tailwindcss/authentication/templates/views/passwords/edit.html.erb b/lib/generators/tailwindcss/authentication/templates/app/views/passwords/edit.html.erb similarity index 100% rename from lib/generators/tailwindcss/authentication/templates/views/passwords/edit.html.erb rename to lib/generators/tailwindcss/authentication/templates/app/views/passwords/edit.html.erb diff --git a/lib/generators/tailwindcss/authentication/templates/views/passwords/new.html.erb b/lib/generators/tailwindcss/authentication/templates/app/views/passwords/new.html.erb similarity index 100% rename from lib/generators/tailwindcss/authentication/templates/views/passwords/new.html.erb rename to lib/generators/tailwindcss/authentication/templates/app/views/passwords/new.html.erb diff --git a/lib/generators/tailwindcss/authentication/templates/views/sessions/new.html.erb b/lib/generators/tailwindcss/authentication/templates/app/views/sessions/new.html.erb similarity index 100% rename from lib/generators/tailwindcss/authentication/templates/views/sessions/new.html.erb rename to lib/generators/tailwindcss/authentication/templates/app/views/sessions/new.html.erb