Skip to content

[NO JIRA] Bug fixes #346

Merged
merged 4 commits into from
Nov 6, 2025
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace ApiSource\Controller;
namespace ApiConnector\Controller;

use App\Controller\AppController as BaseController;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace FileProvisioner\Controller;
namespace FileConnector\Controller;

use App\Controller\AppController as BaseController;

Expand Down
2 changes: 1 addition & 1 deletion app/config/schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@
"columns": {
"id": {},
"job_id": { "type": "integer", "foreignkey": { "table": "jobs", "column": "id" }},
"record_key": { "type": "string", "size": 64 },
"record_key": { "type": "string", "size": 512 },
"person_id": {},
"external_identity_id": {},
"comment": {},
Expand Down
2 changes: 1 addition & 1 deletion app/plugins/CoreServer/config/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"refresh_token": { "type": "text" },
"access_token": { "type": "text" },
"token_response": { "type": "text" },
"access_token_exp": { "type": "boolean" }
"access_token_exp": { "type": "bigint"}
},
"indexes": {
"oauth2_servers_i1": { "columns": [ "server_id" ] }
Expand Down
2 changes: 1 addition & 1 deletion app/src/Model/Table/PetitionsTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public function initialize(array $config): void {
'type' => 'enum',
'class' => 'PetitionStatusEnum'
],
'couIds' => [
'cous' => [
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What are autoViewVars even used for here? The view view is completely custom...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes it is.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The petition view knows the id of the cou but has no knowledge of the name. This way we can map the id to a name and render it to the view.

'type' => 'select',
'model' => 'Cous'
]
Expand Down