Skip to content

Commit

Permalink
[NO JIRA] Bug fixes (#346)
Browse files Browse the repository at this point in the history
* Fix access toke expiration database column type

* Fix namespaces

* job_history_records record_key size should much the External Identity source_key

* Fix search block filter configuration
  • Loading branch information
Ioannis authored Nov 6, 2025
1 parent 42a3e15 commit a9158c3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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' => [
'type' => 'select',
'model' => 'Cous'
]
Expand Down

0 comments on commit a9158c3

Please sign in to comment.