From 2c3400fb4f5a22951d42f286975201bf817d7883 Mon Sep 17 00:00:00 2001 From: floppydiskette Date: Fri, 13 Sep 2024 12:58:12 +0100 Subject: wrong --- src/actions/sign_ins/create.cr | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/actions/sign_ins/create.cr (limited to 'src/actions/sign_ins/create.cr') diff --git a/src/actions/sign_ins/create.cr b/src/actions/sign_ins/create.cr new file mode 100644 index 0000000..af22588 --- /dev/null +++ b/src/actions/sign_ins/create.cr @@ -0,0 +1,16 @@ +class SignIns::Create < BrowserAction + include Auth::RedirectSignedInUsers + + post "/sign_in" do + SignInUser.run(params) do |operation, authenticated_user| + if authenticated_user + sign_in(authenticated_user) + flash.success = "You're now signed in" + Authentic.redirect_to_originally_requested_path(self, fallback: Home::Index) + else + flash.failure = "Sign in failed" + html NewPage, operation: operation + end + end + end +end -- cgit v1.2.3-54-g00ecf