Commit e84834ee authored by SpinShare's avatar SpinShare

quick fix for patreon

parent 72b14b5f
......@@ -45,13 +45,15 @@ class IndexController extends AbstractController
*/
public function support(Request $request)
{
return $this->redirect('https://patreon.com/spinshare');
/*
$em = $this->getDoctrine()->getManager();
$data = [];
$patreons = $em->getRepository(User::class)->findBy(array('isPatreon' => true), array('id' => 'DESC'));
$data['patreons'] = $patreons;
return $this->render('index/support.html.twig', $data);
return $this->render('index/support.html.twig', $data); */
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment