1 2 3 4 5 6 7 8
class RegistrationsController < ApplicationController allow_unauthenticated_access only: %i[ new create ] def new end def create end end