Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(MPDZBS-877): Improve ThinnedProcess object and cleanup some stuff with naming #739

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
201 changes: 4 additions & 197 deletions zmsadmin/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion zmscalldisplay/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions zmscitizenapi/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
<?php
/*if (php_sapi_name() !== 'cli' && (!defined('BOOTSTRAP_ALLOW_WEB') || !BOOTSTRAP_ALLOW_WEB)) {
header('HTTP/1.0 403 Forbidden');
exit('Access Denied');
}*/ // If activated blocks direct api access via http

// @codingStandardsIgnoreFile
chdir(__DIR__);

Expand Down
2 changes: 1 addition & 1 deletion zmscitizenapi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"keywords": [
"eappointment"
],
"author": "BerlinOnline GmbH & Co. KG",
"author": "it@m - opensource@muenchen.de",
"license": "SEE LICENSE IN LICENSE FILE",
"dependencies": {
"@apidevtools/swagger-cli": "^4.0.4"
Expand Down
2 changes: 1 addition & 1 deletion zmscitizenapi/public/doc/partials/definitions.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
definitions:
appointment:
$ref: "schema/citizenapi/appointment.json"
$ref: "schema/citizenapi/thinnedProcess.json"
appointmentCancel:
$ref: "schema/citizenapi/appointmentCancel.json"
appointmentConfirm:
Expand Down
24 changes: 12 additions & 12 deletions zmscitizenapi/routing.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@
*/
\App::$slim->get(
'/scope-by-id/',
'\BO\Zmscitizenapi\ScopeByIdGet'
'\BO\Zmscitizenapi\ScopeById'
)
->setName("ScopeByIdGet");
->setName("ScopeById");

/**
* @swagger
Expand Down Expand Up @@ -294,7 +294,7 @@
* meta:
* $ref: "schema/metaresult.json"
* data:
* $ref: "schema/citizenapi/appointment.json"
* $ref: "schema/citizenapi/thinnedProcess.json"
* 400:
* description: Invalid input
* schema:
Expand All @@ -318,9 +318,9 @@
*/
\App::$slim->get(
'/appointment/',
'\BO\Zmscitizenapi\AppointmentGet'
'\BO\Zmscitizenapi\AppointmentById'
)
->setName("AppointmentGet");
->setName("AppointmentById");

/**
* @swagger
Expand All @@ -342,9 +342,9 @@
*/
\App::$slim->get(
'/captcha-details/',
'\BO\Zmscitizenapi\CaptchaGet'
'\BO\Zmscitizenapi\Captcha'
)
->setName("CaptchaGet");
->setName("Captcha");

/**
* @swagger
Expand All @@ -369,7 +369,7 @@
* meta:
* $ref: "schema/metaresult.json"
* data:
* $ref: "schema/citizenapi/appointment.json"
* $ref: "schema/citizenapi/thinnedProcess.json"
* 400:
* description: Invalid input
* schema:
Expand Down Expand Up @@ -420,7 +420,7 @@
* meta:
* $ref: "schema/metaresult.json"
* data:
* $ref: "schema/citizenapi/appointment.json"
* $ref: "schema/citizenapi/thinnedProcess.json"
* 400:
* description: Invalid input
* schema:
Expand Down Expand Up @@ -471,7 +471,7 @@
* meta:
* $ref: "schema/metaresult.json"
* data:
* $ref: "schema/citizenapi/appointment.json"
* $ref: "schema/citizenapi/thinnedProcess.json"
* 400:
* description: Invalid input
* schema:
Expand Down Expand Up @@ -522,7 +522,7 @@
* meta:
* $ref: "schema/metaresult.json"
* data:
* $ref: "schema/citizenapi/appointment.json"
* $ref: "schema/citizenapi/thinnedProcess.json"
* 400:
* description: Invalid input
* schema:
Expand Down Expand Up @@ -573,7 +573,7 @@
* meta:
* $ref: "schema/metaresult.json"
* data:
* $ref: "schema/citizenapi/appointment.json"
* $ref: "schema/citizenapi/thinnedProcess.json"
* 400:
* description: Invalid input
* schema:
Expand Down
Loading
Loading