1
0
Fork 0

Commits vergleichen

..

2 Commits

Autor SHA1 Nachricht Datum
Angus McLeod
98b2d85e63 Bump version 2023-09-29 08:36:51 +08:00
Angus McLeod
e02f78569a FIX: explicitly order submission list for specs 2023-09-29 08:33:39 +08:00
6 geänderte Dateien mit 49 neuen und 33 gelöschten Zeilen

Datei anzeigen

@ -131,6 +131,8 @@ class CustomWizard::Submission
params[:key] = list_actor_id if list_actor_id
query = PluginStoreRow.where(params)
query = query.order(order_by) if order_by
result = OpenStruct.new(submissions: [], total: nil)
query.each do |record|

Datei anzeigen

@ -10,19 +10,19 @@ class CustomWizard::Subscription
{
wizard: {
required: {
none: ['*'],
none: [],
standard: ['*'],
business: ['*'],
community: ['*']
},
permitted: {
none: ['*'],
none: [],
standard: ['*'],
business: ['*'],
community: ['*', "!#{CustomWizard::Wizard::GUEST_GROUP_ID}"]
},
restart_on_revisit: {
none: ['*'],
none: [],
standard: ['*'],
business: ['*'],
community: ['*']
@ -30,19 +30,19 @@ class CustomWizard::Subscription
},
step: {
condition: {
none: ['*'],
none: [],
standard: ['*'],
business: ['*'],
community: ['*']
},
required_data: {
none: ['*'],
none: [],
standard: ['*'],
business: ['*'],
community: ['*']
},
permitted_params: {
none: ['*'],
none: [],
standard: ['*'],
business: ['*'],
community: ['*']
@ -50,19 +50,19 @@ class CustomWizard::Subscription
},
field: {
condition: {
none: ['*'],
none: [],
standard: ['*'],
business: ['*'],
community: ['*']
},
type: {
none: ['*'],
none: ['text', 'textarea', 'text_only', 'date', 'time', 'date_time', 'number', 'checkbox', 'dropdown', 'upload'],
standard: ['*'],
business: ['*'],
community: ['*']
},
realtime_validations: {
none: ['*'],
none: [],
standard: ['*'],
business: ['*'],
community: ['*']
@ -70,7 +70,7 @@ class CustomWizard::Subscription
},
action: {
type: {
none: ['*'],
none: ['create_topic', 'update_profile', 'open_composer', 'route_to'],
standard: ['create_topic', 'update_profile', 'open_composer', 'route_to', 'send_message', 'watch_categories', 'watch_tags', 'add_to_group'],
business: ['*'],
community: ['*']
@ -78,13 +78,13 @@ class CustomWizard::Subscription
},
custom_field: {
klass: {
none: ['*'],
none: ['topic', 'post'],
standard: ['topic', 'post'],
business: ['*'],
community: ['*']
},
type: {
none: ['*'],
none: ['string', 'boolean', 'integer'],
standard: ['string', 'boolean', 'integer'],
business: ['*'],
community: ['*']
@ -92,7 +92,7 @@ class CustomWizard::Subscription
},
api: {
all: {
none: ['*'],
none: [],
standard: [],
business: ['*'],
community: ['*']
@ -154,11 +154,14 @@ class CustomWizard::Subscription
end
def type
return :business
return :none unless subscribed?
return :business if business?
return :standard if standard?
:community if community?
end
def subscribed?
true
standard? || business? || community?
end
def standard?
@ -166,7 +169,7 @@ class CustomWizard::Subscription
end
def business?
true
product_slug === "business"
end
def community?

Datei anzeigen

@ -1,7 +1,7 @@
# frozen_string_literal: true
# name: discourse-custom-wizard
# about: Forms for Discourse. Better onboarding, structured posting, data enrichment, automated actions and much more.
# version: 2.4.23
# version: 2.4.24
# authors: Angus McLeod, Faizaan Gagan, Robert Barrow, Keegan George, Kaitlin Maddever, Juan Marcos Gutierrez Ramos
# url: https://github.com/paviliondev/discourse-custom-wizard
# contact_emails: development@pavilion.tech

Datei anzeigen

@ -24,7 +24,7 @@ describe CustomWizard::Subscription do
context "without a subscription client" do
it "is not subscribed" do
expect(described_class.subscribed?).to eq(true)
expect(described_class.subscribed?).to eq(false)
end
it "has none type" do

Datei anzeigen

@ -24,7 +24,7 @@ describe CustomWizard::SubmissionSerializer do
it 'should return submission attributes' do
wizard = CustomWizard::Wizard.create(template_json["id"])
list = CustomWizard::Submission.list(wizard, page: 0, order_by: 'id')
list = CustomWizard::Submission.list(wizard, page: 0)
json_array = ActiveModel::ArraySerializer.new(
list.submissions,
@ -40,7 +40,7 @@ describe CustomWizard::SubmissionSerializer do
it "should return field values, types and labels" do
wizard = CustomWizard::Wizard.create(template_json["id"])
list = CustomWizard::Submission.list(wizard, page: 0)
list = CustomWizard::Submission.list(wizard, page: 0, order_by: 'id')
json_array = ActiveModel::ArraySerializer.new(
list.submissions,

Datei anzeigen

@ -121,19 +121,19 @@ const getUnsubscribedAdminWizards = {
subscription_attributes: {
wizard: {
required: {
none: ['*'],
none: [],
standard: ["*"],
business: ["*"],
community: ["*"],
},
permitted: {
none: ['*'],
none: [],
standard: ["*"],
business: ["*"],
community: ["*"],
},
restart_on_revisit: {
none: ['*'],
none: [],
standard: ["*"],
business: ["*"],
community: ["*"],
@ -141,19 +141,19 @@ const getUnsubscribedAdminWizards = {
},
step: {
condition: {
none: ['*'],
none: [],
standard: ["*"],
business: ["*"],
community: ["*"],
},
required_data: {
none: ['*'],
none: [],
standard: ["*"],
business: ["*"],
community: ["*"],
},
permitted_params: {
none: ['*'],
none: [],
standard: ["*"],
business: ["*"],
community: ["*"],
@ -161,19 +161,30 @@ const getUnsubscribedAdminWizards = {
},
field: {
condition: {
none: ['*'],
none: [],
standard: ["*"],
business: ["*"],
community: ["*"],
},
type: {
none: ['*'],
none: [
"text",
"textarea",
"text_only",
"date",
"time",
"date_time",
"number",
"checkbox",
"dropdown",
"upload",
],
standard: ["*"],
business: ["*"],
community: ["*"],
},
realtime_validations: {
none: ['*'],
none: [],
standard: ["*"],
business: ["*"],
community: ["*"],
@ -181,7 +192,7 @@ const getUnsubscribedAdminWizards = {
},
action: {
type: {
none: ['*'],
none: ["create_topic", "update_profile", "open_composer", "route_to"],
standard: [
"create_topic",
"update_profile",
@ -197,20 +208,20 @@ const getUnsubscribedAdminWizards = {
},
custom_field: {
klass: {
none: ['*'],
none: ["topic", "post"],
standard: ["topic", "post"],
business: ["*"],
community: ["*"],
},
type: {
none: ['*'],
none: ["string", "boolean", "integer"],
standard: ["string", "boolean", "integer"],
business: ["*"],
community: ["*"],
},
},
api: {
all: { none: ["*"], standard: [], business: ["*"], community: ["*"] },
all: { none: [], standard: [], business: ["*"], community: ["*"] },
},
},
subscription_client_installed: false,