Skip to content

Commit

Permalink
added group status to the DEX message
Browse files Browse the repository at this point in the history
  • Loading branch information
tmbattey-2021 authored and bpow committed Dec 17, 2024
1 parent a970ecb commit 2de35a0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ public function getPublishableMessage(): array
'id' => $this->group->uuid,
'name' => $this->group->displayName,
'short_name' => $this->group->expertPanel->short_base_name,
'status' => $this->group->group_Status,
'status' => optional($this->group->groupStatus)->name, // Retrieve the status name
// 'status' => $this->group->group_Status,
'parent_group' => optional($this->group->parentGroup)->displayName,
'type' => $this->group->fullType->name,
'affiliation_id' => $this->group->expertPanel->affiliation_id
Expand Down

0 comments on commit 2de35a0

Please sign in to comment.