docs(tutorial): HTML login form reference 実装を tutorial に追加する (#281)#290
Merged
Conversation
bundled SessionController は REST 専用で、tutorial にも HTML login form の例が無く、新規実装者は AuthSession の public API ドキュメント から組み立てる必要があった (FT5 finding F-7)。 "Add Authentication Requirements" section 内に "Add an HTML Login Form" subsection を新設、~75 行の AuthController 例 + login/logout template snippet を runnable な形で展示する。 カバー範囲: - preAction() で SESSION_CHECK=false にして login page を public に - $this->method 分岐で GET (form) / POST (handler) を捌く - login 自体は CSRF check 不要 (まだ session が無い)、logout + 以降の protected form は #279 の helper (csrfToken / verifyCsrfFromPost) - AuthSession::login(\$user) は UserMapper::findByCredentials() の 返り値をそのまま渡せる - login 成功時の redirect、LOGOUT_URI (env override #277) と unauthorizedRedirect() hook (#278) との関係 logout button の form snippet も併記して end-to-end UX を一覧化。 Closes #281. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Test plan
🤖 Generated with Claude Code