We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c20e41c commit d2cda99Copy full SHA for d2cda99
1 file changed
solid/lib/Controller/ServerController.php
@@ -191,6 +191,9 @@ private function checkApproval($clientId) {
191
if ($clientId == md5("tester")) { // FIXME: Double check that this is not a security issue; It is only here to help the test suite;
192
return \Pdsinterop\Solid\Auth\Enum\Authorization::APPROVED;
193
}
194
+ if ($clientId == md5("https://tester")) { // FIXME: Double check that this is not a security issue; It is only here to help the test suite;
195
+ return \Pdsinterop\Solid\Auth\Enum\Authorization::APPROVED;
196
+ }
197
if (in_array($clientId, $allowedClients)) {
198
199
} else {
0 commit comments