diff options
author | Matthew Lemon <y@yulqen.org> | 2024-11-11 17:12:50 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-11-11 17:12:50 +0000 |
commit | 154a9ab32ae1447c191d0b1f565b1e905851a9e2 (patch) | |
tree | cf119820e199181c96cf9b03d15ecdf79644210a /app/controllers/registrations_controller.rb | |
parent | b8d7a7cf7e78fe384c6c6e8e6812a252084ce1f0 (diff) |
Adds a Create new account page and part way through configging the form
Diffstat (limited to 'app/controllers/registrations_controller.rb')
-rw-r--r-- | app/controllers/registrations_controller.rb | 8 |
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 |