aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/registrations_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/registrations_controller.rb')
-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