Skip to content

Commit ba15f69

Browse files
committed
Fix service scopes on Prestashop 8
1 parent 3741559 commit ba15f69

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.2.1
2+
3+
- Fix service scopes on Prestashop 8
4+
15
## 1.2.0
26

37
- Allow managing Minify settings

config/services.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,17 @@ services:
33
class: 'Pixel\Module\Cloudflare\Controller\Admin\CloudflareController'
44
arguments:
55
- '@pixel.cloudflare.api'
6+
public: true
7+
68
pixel.cloudflare.config:
79
class: 'Pixel\Module\Cloudflare\Helper\Config'
10+
811
pixel.cloudflare.api:
912
class: 'Pixel\Module\Cloudflare\Model\Api'
1013
arguments:
1114
- '@symfony.component.http.client.curl'
1215
- '@pixel.cloudflare.config'
16+
public: true
17+
1318
symfony.component.http.client.curl:
1419
class: 'Symfony\Component\HttpClient\CurlHttpClient'

pixel_cloudflare.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Pixel_cloudflare extends Module
2222
public function __construct()
2323
{
2424
$this->name = 'pixel_cloudflare';
25-
$this->version = '1.2.0';
25+
$this->version = '1.2.1';
2626
$this->author = 'Pixel Open';
2727
$this->tab = 'administration';
2828
$this->need_instance = 0;

0 commit comments

Comments
 (0)