feat: Add authentication templates and actions

This commit is contained in:
2026-03-27 13:09:46 -07:00
parent c5f6b2f6b3
commit 76a46f51ed
5 changed files with 144 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# frozen_string_literal: true
module EuchreCamp
module Views
module Auth
module Login
class Create < EuchreCamp::View
expose :current_player
end
end
end
end
end
+13
View File
@@ -0,0 +1,13 @@
# frozen_string_literal: true
module EuchreCamp
module Views
module Auth
module Login
class Show < EuchreCamp::View
expose :current_player
end
end
end
end
end