We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba36923 commit d2f8436Copy full SHA for d2f8436
lib/superset/dashboard/bulk_delete_cascade.rb
@@ -17,7 +17,6 @@ def initialize(dashboard_ids: [])
17
def perform
18
raise InvalidParameterError, "dashboard_ids array of integers expected" unless dashboard_ids.is_a?(Array)
19
raise InvalidParameterError, "dashboard_ids array must contain Integer only values" unless dashboard_ids.all? { |item| item.is_a?(Integer) }
20
- # TODO check if dashboard_ids are valid
21
22
dashboard_ids.sort.each do |dashboard_id|
23
logger.info("Dashboard Id: #{dashboard_id.to_s} Attempting CASCADE delete of dashboard, charts, datasets")
0 commit comments