acf5de82 by Jeff Balicki

com

1 parent 905e926c
...@@ -153,7 +153,7 @@ $app->post('/disconnect', function () use ($app, $client) { ...@@ -153,7 +153,7 @@ $app->post('/disconnect', function () use ($app, $client) {
153 $client->revokeToken($token); 153 $client->revokeToken($token);
154 // Remove the credentials from the user's session. 154 // Remove the credentials from the user's session.
155 $app['session']->set('token', ''); 155 $app['session']->set('token', '');
156 return new Response('Successfully disconnected', 200); 156 // return new Response('Successfully disconnected', 200);
157 }); 157 });
158 158
159 $app->run(); 159 $app->run();
......