add rest application and discount-status rest method

This commit is contained in:
Roland Schneider
2018-08-31 07:50:14 +02:00
parent 017bf0f9e4
commit 767211d6c7
33 changed files with 805 additions and 16 deletions

View File

@@ -36,6 +36,8 @@ return [
'backend/web/assets',
'frontend/runtime',
'frontend/web/assets',
'rest/runtime',
'rest/web/assets',
],
'setExecutable' => [
'yii',
@@ -44,6 +46,7 @@ return [
'setCookieValidationKey' => [
'backend/config/main-local.php',
'frontend/config/main-local.php',
'rest/config/main-local.php',
],
],
'Production' => [
@@ -53,6 +56,8 @@ return [
'backend/web/assets',
'frontend/runtime',
'frontend/web/assets',
'rest/runtime',
'rest/web/assets',
],
'setExecutable' => [
'yii',
@@ -60,6 +65,7 @@ return [
'setCookieValidationKey' => [
'backend/config/main-local.php',
'frontend/config/main-local.php',
'rest/config/main-local.php',
],
],
'rochonet' => [
@@ -69,6 +75,8 @@ return [
'backend/web/assets',
'frontend/runtime',
'frontend/web/assets',
'rest/runtime',
'rest/web/assets',
],
'setExecutable' => [
'yii',
@@ -76,6 +84,7 @@ return [
'setCookieValidationKey' => [
'backend/config/main-local.php',
'frontend/config/main-local.php',
'rest/config/main-local.php',
],
],
];