Retained Legacy Auth Handlers
These auth handlers are intentionally preserved in the codebase, but they are not mounted as active API routes.
Current Preserved Legacy Set
lib/php/thisProject/api/auth/user/legacy/DelegatedLogin.phplib/php/thisProject/api/auth/user/legacy/Validate.phplib/php/thisProject/api/auth/member/legacy/DelegatedLogin.phplib/php/thisProject/api/auth/member/legacy/Validate.phplib/php/thisProject/api/auth/member/legacy/Exchange.php
Why They Are Retained
- they are not part of the current first-party route contract
- they were not part of the current visible
sso.user.m7.orgtrace - they still preserve earlier auth ideas that may have value later
- keeping them on disk preserves runnable reference code without implying they are part of the present supported surface
Former Route Mapping
| Earlier route | Preserved handler |
|---|---|
/auth/delegated-login |
lib/php/thisProject/api/auth/user/legacy/DelegatedLogin.php |
/auth/validate |
lib/php/thisProject/api/auth/user/legacy/Validate.php |
/client-auth/delegated-login |
lib/php/thisProject/api/auth/member/legacy/DelegatedLogin.php |
/client-auth/validate |
lib/php/thisProject/api/auth/member/legacy/Validate.php |
/client-auth/exchange |
lib/php/thisProject/api/auth/member/legacy/Exchange.php |