Fix project isDTLEnabled
This commit is contained in:
parent
9a4de64663
commit
a963f8aff6
2 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,7 @@ function getProjectData($project) {
|
|||
"notifications" => Yaml::decode($project->notifications()->value),
|
||||
"uuid" => (string) $project->uuid(),
|
||||
"slug" => (string) $project->slug(),
|
||||
"isDTLEnabled" => (bool) $project->isDTLEnabled()->value() == "true"
|
||||
"isDTLEnabled" => $project->isDTLEnabled()->value() == "true" ? true : false
|
||||
];
|
||||
|
||||
if ($project->isDTLEnabled()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue