diff --git a/app/plugins/CoreServer/src/Model/Table/MatchServersTable.php b/app/plugins/CoreServer/src/Model/Table/MatchServersTable.php index 35ba8e4cc..873c73745 100644 --- a/app/plugins/CoreServer/src/Model/Table/MatchServersTable.php +++ b/app/plugins/CoreServer/src/Model/Table/MatchServersTable.php @@ -59,7 +59,7 @@ public function initialize(array $config): void { $this->setTableType(\App\Lib\Enum\TableTypeEnum::Configuration); // Define associations - // XXX this is defined in HttpServersTable + // this is defined in HttpServersTable // $this->belongsTo('Servers'); $this->hasMany('CoreServer.MatchServerAttributes') ->setDependent(true) diff --git a/app/plugins/CoreServer/src/Model/Table/Oauth2ServersTable.php b/app/plugins/CoreServer/src/Model/Table/Oauth2ServersTable.php index fb2a0306f..f31ce438c 100644 --- a/app/plugins/CoreServer/src/Model/Table/Oauth2ServersTable.php +++ b/app/plugins/CoreServer/src/Model/Table/Oauth2ServersTable.php @@ -54,7 +54,7 @@ public function initialize(array $config): void { $this->setTableType(\App\Lib\Enum\TableTypeEnum::Configuration); // Define associations - // XXX this is defined in HttpServersTable + // this is defined in HttpServersTable // $this->belongsTo('Servers'); $this->setDisplayField('hostname'); diff --git a/app/src/Model/Table/JobsTable.php b/app/src/Model/Table/JobsTable.php index 675cc0c8b..15f9012a8 100644 --- a/app/src/Model/Table/JobsTable.php +++ b/app/src/Model/Table/JobsTable.php @@ -112,7 +112,7 @@ public function initialize(array $config): void { ], // Actions that operate over a table (ie: do not require an $id) 'table' => [ - 'add' => ['platformAdmin', 'coAdmin'], + 'add' => false, // generic add of jobs via the UI is not yet supported 'index' => ['platformAdmin', 'coAdmin'] ], 'readOnly' => ['cancel'],