Commit 250e6587 authored by Laura Heimann's avatar Laura Heimann

added playlists and client docs routes

parent 00e49571
......@@ -64,6 +64,17 @@ class APIDocsController extends AbstractController
return $this->render('apidocs/open/discovery.html.twig', $data);
}
/**
* @Route("/api/docs/open/client", name="api.docs.open.client")
*/
public function openClient(Request $request)
{
$em = $this->getDoctrine()->getManager();
$data = [];
return $this->render('apidocs/open/client.html.twig', $data);
}
/**
* @Route("/api/docs/open/promos", name="api.docs.open.promos")
*/
......@@ -141,6 +152,17 @@ class APIDocsController extends AbstractController
return $this->render('apidocs/connect/profile.html.twig', $data);
}
/**
* @Route("/api/docs/connect/playlists", name="api.docs.connect.playlists")
*/
public function connectPlaylists(Request $request)
{
$em = $this->getDoctrine()->getManager();
$data = [];
return $this->render('apidocs/connect/playlists.html.twig', $data);
}
/**
* @Route("/api/docs/connect/notifications", name="api.docs.connect.notifications")
*/
......
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