Skip to content

Commit

Permalink
HC-1390: Fix reference to a non-existent deprecated function getApiUrl()
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Martinkevich committed Mar 9, 2023
1 parent 7c81e7e commit be58c90
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Model/Config/ApiSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,15 @@ public function getRecommendationsUrl($store = null) : string
return $this->getEnvironmentConfig(self::RECOMMENDATIONS_URL, $store);
}

/**
* @deprecated 2.6.0
* @see \HawkSearch\Connector\Model\Config\ApiSettings::getDashboardApiUrl()
*/
public function getApiUrl($store = null) : string
{
return $this->getDashboardApiUrl($store);
}

/**
* Get Hawksearch Dashboard API URL
*
Expand Down

0 comments on commit be58c90

Please sign in to comment.