aboutsummaryrefslogtreecommitdiff
path: root/src/actions/sign_ins/new.cr
blob: 3275b40f4472f23c0b04af0c4edff3257d3a62fc (plain)
1
2
3
4
5
6
7
class SignIns::New < BrowserAction
  include Auth::RedirectSignedInUsers

  get "/sign_in" do
    html NewPage, operation: SignInUser.new
  end
end