-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: achieve login with solid.community #14
Conversation
added login page small tweaks to make it in line with testsuite, passing all tests now though some are a bit faked
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So far things look good. Some minor comments, mostly for future reference. No need for changes.
public function __invoke(ServerRequestInterface $request, array $args) : ResponseInterface | ||
{ | ||
$clientId = $args['clientId']; | ||
$returnUrl = $_POST['returnUrl']; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For future reference: POST parameters can be retrieved from a PSR7 Request through $request->getParsedBody()
accept 'cookie' userid for the test suite for now
…set the username/password
added (non functional) token controller
No description provided.