From 154a9ab32ae1447c191d0b1f565b1e905851a9e2 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Mon, 11 Nov 2024 17:12:50 +0000 Subject: Adds a Create new account page and part way through configging the form --- app/controllers/registrations_controller.rb | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 app/controllers/registrations_controller.rb (limited to 'app/controllers/registrations_controller.rb') diff --git a/app/controllers/registrations_controller.rb b/app/controllers/registrations_controller.rb new file mode 100644 index 0000000..13ef4dd --- /dev/null +++ b/app/controllers/registrations_controller.rb @@ -0,0 +1,8 @@ +class RegistrationsController < ApplicationController + allow_unauthenticated_access only: %i[ new create ] + def new + end + + def create + end +end \ No newline at end of file -- cgit v1.2.3