aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-11-11 17:12:50 +0000
committerMatthew Lemon <y@yulqen.org>2024-11-11 17:12:50 +0000
commit154a9ab32ae1447c191d0b1f565b1e905851a9e2 (patch)
treecf119820e199181c96cf9b03d15ecdf79644210a /app/controllers
parentb8d7a7cf7e78fe384c6c6e8e6812a252084ce1f0 (diff)
Adds a Create new account page and part way through configging the form
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/registrations_controller.rb8
1 files changed, 8 insertions, 0 deletions
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