bito-code-review[bot] commented on PR #42494:
URL: https://github.com/apache/superset/pull/42494#issuecomment-5098524729
<!-- Bito Reply -->
The flagged issue is correct. The `include_cta` field is missing from the
`list_columns` configuration in `superset/reports/api.py`, which prevents
list-based API clients from accessing the persisted CTA preference. To resolve
this, you should add `include_cta` to the `list_columns` list in the
`ReportScheduleRestApi` class definition within `superset/reports/api.py`.
**superset/reports/api.py**
```
list_columns = [
"id",
"name",
"active",
"crontab",
"last_eval_dttm",
"last_state",
"include_cta",
]
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]