aboutsummaryrefslogtreecommitdiff
path: root/src/actions/sign_ups/new.cr
blob: 2299df6eebd11e410f9a168c9c4cfa1e7d2fc2b0 (plain)
1
2
3
4
5
6
7
class SignUps::New < BrowserAction
  include Auth::RedirectSignedInUsers

  get "/sign_up" do
    html NewPage, operation: SignUpUser.new
  end
end