UX: simplify and shorten new script flow for automations (#29178)

This commit is contained in:
Kris
2024-10-23 14:04:17 -04:00
committed by GitHub
parent b7f76d99e8
commit d471c01ff6
17 changed files with 210 additions and 168 deletions

View File

@ -0,0 +1,7 @@
# frozen_string_literal: true
class RemoveNameRequirementFromAutomations < ActiveRecord::Migration[7.1]
def change
change_column_null :discourse_automation_automations, :name, true
end
end