public function getSharesCountNgAction()
 {
     $em = $this->getDoctrine()->getManager();
     $response = new Response(json_encode(array("result" => Share::getSharesCount($em))));
     $response->headers->set('Content-Type', 'application/json');
     return $response;
 }