Skip to content

Commit

Permalink
Rename default branch to main
Browse files Browse the repository at this point in the history
  • Loading branch information
mitelg committed Jan 31, 2023
1 parent 9132ac2 commit bba01e7
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ To enable the search, the environment variable `SYMFONY__ALGOLIA_ENABLED` also m
SYMFONY__ALGOLIA_ENABLED=1 SYMFONY__ALGOLIA_API_KEY=MYAPIKEY ./vendor/bin/sculpin generate
```

These variables are automatically exported during the Travis-CI build for every merge/commit on the `master` branch.
These variables are automatically exported during the build for every merge/commit on the `main` branch.


## CSS helper classes
Expand Down
2 changes: 1 addition & 1 deletion app/config/sculpin_site.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
title: Shopware Developers
githuburl: https://github.com/shopware5/devdocs/blob/master/source/
githuburl: https://github.com/shopware5/devdocs/blob/main/source/
github_enabled: true
default_date_format: "F jS, Y"

Expand Down
2 changes: 1 addition & 1 deletion source/developers-guide/rest-api/examples/article/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ In this example, we will update the name of the product with the id 3
"success":true,
"data":{
"id":3,
"location":"http:\/\/localhost\/master\/api\/articles\/3"
"location":"http:\/\/localhost\/shop\/api\/articles\/3"
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions source/developers-guide/rest-api/examples/order/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ To load a specific order, you have to provide either the identifier or the numbe
"title":null,
"position":0,
"host":null,
"basePath":"\/master",
"basePath":"\/shop",
"baseUrl":null,
"hosts":"",
"secure":false,
Expand Down Expand Up @@ -518,7 +518,7 @@ To load a specific order, you have to provide either the identifier or the numbe
"title":null,
"position":0,
"host":null,
"basePath":"\/master",
"basePath":"\/shop",
"baseUrl":null,
"hosts":"",
"secure":false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ You can also find a fully comprehensive and up-to-date Swagger documentation <a

## API Structure

In order to maintain your custom pricing lists, the Pricing Engine offers a range of RESTful endpoints. In the following examples is http://10.222.222.30/api our local endpoint for the shopware api. You can find examples written with guzzle in the official <a href="https://git.shopware.com/enterprise/PricingEngine" target="_blank">git repo</a>. If you don't have access yet, please create a ticket via your shopware account. You will receive an invitation soon.
In order to maintain your custom pricing lists, the Pricing Engine offers a range of RESTful endpoints. In the following examples is http://10.222.222.30/api our local endpoint for the shopware api. You can find examples written with guzzle in the official <a href="https://gitlab.com/shopware/shopware/enterprise/swagenterprisepricingengine" target="_blank">git repo</a>. If you don't have access yet, please create a ticket via your shopware account. You will receive an invitation soon.

### Price lists

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,4 +162,4 @@ At least we have to register our components in the dependency injection containe
```

## Conclusion
To add a own condition is quite simple. If you need the whole plugin, please have a look into our [example-plugins](https://git.shopware.com/enterprise/PricingEngine/tree/master/example-plugins/) directory.
To add a own condition is quite simple. If you need the whole plugin, please have a look into our [example-plugins](https://gitlab.com/shopware/shopware/enterprise/swagenterprisepricingengine/-/tree/master/example-plugins/) directory.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ menu_order: 1

The Pricing Engine stores several prices in price lists which can be assigned to different contexts with conditions. The whole architecture is designed for use cases where an ERP or PIM system is managing the prices. So no backend view is present for adding, inserting or deleting prices. So the backend offers only a view to manage the conditions for the imported price lists. For controlling purposes there is a separate tab added in the product detail view. In this view you can see all configured prices for this product and filter it by the existing price lists.

To import price lists and prices there is a power full REST-Api present. You can find all definitions in our swagger.json [here](https://git.shopware.com/enterprise/PricingEngine/blob/master/swagger.json)
To import price lists and prices there is a powerful REST-Api present. You can find all definitions in our swagger.json [here](https://gitlab.com/shopware/shopware/enterprise/swagenterprisepricingengine/-/blob/master/swagger.json)


## Backend View
Expand Down

0 comments on commit bba01e7

Please sign in to comment.