Extract 37id and QB controllers, models, and tests

This commit is contained in:
Mike Dalessio
2025-09-12 13:55:06 -04:00
parent f4e2fe31b4
commit 2630e4bd74
57 changed files with 540 additions and 539 deletions
@@ -15,20 +15,6 @@ class ControllerAuthenticationTest < ActionDispatch::IntegrationTest
assert_redirected_to new_session_path
end
else
test "access without an account slug redirects to launchpad" do
integration_session.default_url_options[:script_name] = "" # no tenant
get cards_path
assert_redirected_to Launchpad.login_url(product: true)
end
test "access with an account slug but no session redirects to launchpad" do
get cards_path
assert_redirected_to Launchpad.login_url(product: true, account: Account.sole)
end
end
test "access with an account slug and a session allows functional access" do