Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
af3e61fe75
* Add custom field improvements This PR does a few things to improve our support of custom fields 1. Adds custom fields added by other plugins to the list in admin/wizards/custom-fields and the custom field list in the mapper selector 2. Adds support for json custom fields in the wizard actions * Make eslint happy * Make prettier happy * Make rubocop happy * Make ember template lint happy * Don't assume we have the context in the selector * Ensure custom fields don't require optional attributes (with tests)
23 Zeilen
566 B
Ruby
23 Zeilen
566 B
Ruby
# frozen_string_literal: true
|
|
class CustomWizard::AdminController < ::Admin::AdminController
|
|
before_action :ensure_admin
|
|
|
|
def index
|
|
end
|
|
|
|
private
|
|
|
|
def find_wizard
|
|
params.require(:wizard_id)
|
|
@wizard = CustomWizard::Wizard.create(params[:wizard_id].underscore)
|
|
raise Discourse::InvalidParameters.new(:wizard_id) unless @wizard
|
|
end
|
|
|
|
def custom_field_list
|
|
serialize_data(CustomWizard::CustomField.full_list, CustomWizard::CustomFieldSerializer)
|
|
end
|
|
|
|
def render_error(message)
|
|
render json: failed_json.merge(error: message)
|
|
end
|
|
end
|