Mise en place api pour upload CV ds web app
This commit is contained in:
@@ -370,11 +370,17 @@ class User extends BaseUser
|
||||
public function getIdCard()
|
||||
{
|
||||
$pres="";
|
||||
$cv="";
|
||||
|
||||
if($this->getCompany()->getPresentationVideo())
|
||||
{
|
||||
$pres= $this->getCompany()->getPresentationVideo()->getCdnUrl();
|
||||
}
|
||||
|
||||
if($this->getCompany()->getCv())
|
||||
{
|
||||
$cv= $this->getCompany()->getCv();
|
||||
}
|
||||
|
||||
$card = array(
|
||||
"firstname" => $this->getFirstname(),
|
||||
@@ -386,6 +392,7 @@ class User extends BaseUser
|
||||
"linkedin" => $this->getCompany()->getExtra()["linkedin"],
|
||||
"twitter" => $this->getCompany()->getExtra()["twitter"],
|
||||
"videoPres" => $pres,
|
||||
"cv" => $cv,
|
||||
"currentJob" => $this->getCompany()->getExtra()["titleTalent"],
|
||||
"website" => $this->getCompany()->getWebsite(),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user