You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix: updated API response format for auth request, configured backend URL for Playwright, and fixed responses for invite API
* chore: update MOCKIN URL to use localhost instead of 127.0.0.1
* Uncomment the e2e tests from GHA.
* Convert GET request with op and login_hint to POST params before routing in HelloClient handler
* Command handler: default sub to empty string when JWT claim is missing; add GET /post-test (REQUEST_METHOD=GET) to simulate POST
* fix: unit test, invalid schema for mock redirect url
* add redirect to login when request contains iss, login_hint, domain_hint, target_link_uri, or redirect_uri and validate issuer
* fix: tighten types and null checks in HelloClient
- Updated getAuth() return docblock and added array checks before accessing authCookie
- Casted fields (email, name, picture, sub) to string/bool to satisfy static analysis
- Ensured json() always receives associative array<string, mixed>
- Casted $iss and $op to string before use and fixed error message format
* test: fix asset string in testCanGenerateInviteUrl
- Corrected invite URL asset string in InviteTest::testCanGenerateInviteUrl
- Verified Invite handler generates expected URL
* refactor: clean up HelloClient constructor and remove unreachable ternary
- Directly use getHelloDomain() for issuer initialization (typed as string)
- Removed redundant else branch flagged by PHPStan
- Preserved all other logic and type safety
* fix(invite): normalize return_uri to remove unreachable ternary
- Precompute $returnUri before building request to avoid PHPStan warning
- Keeps logic same but eliminates 'else branch is unreachable' issue
* fix(invite): replace ternary with if block for returnUri
- Removed unreachable else branch flagged by PHPStan
- Now sets $returnUri using a simple if statement
* Name the artifact uniquely e2e matrix.
* Fix lint issues.
getHelloDomain() method will never return a null, so no need to do
a null check on it.
---------
Co-authored-by: Unnikrishnan B <unnikrishnanadoor@gmail.com>
0 commit comments