Skip to content

Commit 2307303

Browse files
committed
Fix bugs
1 parent 63422fd commit 2307303

File tree

489 files changed

+8567
-45156
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

489 files changed

+8567
-45156
lines changed

Vuefront/Vuefront/Module/Api/GraphqlInterface.php renamed to Vuefront/Vuefront/Api/GraphqlInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Vuefront\Vuefront\Module\Api;
3+
namespace Vuefront\Vuefront\Api;
44
interface GraphqlInterface
55
{
66
/**
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "vuefront_api",
3+
"description": "Vuefront api",
4+
"require": {
5+
"webonyx/graphql-php": "0.11.6"
6+
},
7+
"type": "magento2-module",
8+
"version": "0.1.0"
9+
}

Vuefront/Vuefront/composer.lock renamed to Vuefront/Vuefront/ApiGraphql/composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Vuefront/Vuefront/model/blog/category.php renamed to Vuefront/Vuefront/ApiGraphql/model/blog/category.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
require_once VF_SYSTEM_DIR.'engine/model.php';
4+
35
class ModelBlogCategory extends Model
46
{
57
public function getCategory($category_id)

Vuefront/Vuefront/model/blog/post.php renamed to Vuefront/Vuefront/ApiGraphql/model/blog/post.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
require_once VF_SYSTEM_DIR.'engine/model.php';
4+
35
class ModelBlogPost extends Model
46
{
57
public function getPost($post_id)

Vuefront/Vuefront/model/blog/review.php renamed to Vuefront/Vuefront/ApiGraphql/model/blog/review.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
require_once VF_SYSTEM_DIR.'engine/model.php';
4+
35
class ModelBlogReview extends Model
46
{
57
public function getReviews($post_id)

Vuefront/Vuefront/model/common/address.php renamed to Vuefront/Vuefront/ApiGraphql/model/common/address.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
require_once VF_SYSTEM_DIR.'engine/model.php';
4+
35
class ModelCommonAddress extends Model
46
{
57
public function addAddress($customer_id, $data)

Vuefront/Vuefront/model/common/country.php renamed to Vuefront/Vuefront/ApiGraphql/model/common/country.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
require_once VF_SYSTEM_DIR.'engine/model.php';
4+
35
class ModelCommonCountry extends Model
46
{
57
public function getCountry($country_id)

Vuefront/Vuefront/model/common/page.php renamed to Vuefront/Vuefront/ApiGraphql/model/common/page.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
require_once VF_SYSTEM_DIR.'engine/model.php';
4+
35
class ModelCommonPage extends Model
46
{
57
public function getPage($page_id)

0 commit comments

Comments
 (0)