테넌트 접근 제한 안내화면 개선

This commit is contained in:
kyy
2026-04-28 13:24:11 +09:00
parent 955128a25a
commit d0340fc062
6 changed files with 574 additions and 210 deletions
@@ -0,0 +1,5 @@
import 'package:userfront/core/services/auth_proxy_service.dart';
bool shouldRouteConsentErrorToErrorScreen(Object error) {
return error is AuthProxyException && error.errorCode == 'tenant_not_allowed';
}