Skip to content

Commit

Permalink
Minor fixes following CFM-338
Browse files Browse the repository at this point in the history
  • Loading branch information
Benn Oshrin committed Sep 14, 2025
1 parent 730c675 commit 5670b64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion app/src/Model/Table/JobsTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down

0 comments on commit 5670b64

Please sign in to comment.