Move notifications to tray controller

This commit is contained in:
Kevin McConnell
2025-01-16 15:07:47 +00:00
parent 6f8c929898
commit c4f50fa634
6 changed files with 12 additions and 10 deletions
@@ -0,0 +1,14 @@
require "test_helper"
class Notifications::TraysControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
end
test "show" do
get notifications_tray_url
assert_response :success
assert_select "div", text: /Layout is broken/
end
end