Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-22 17:30:29 +01:00
FIX: add ability for send_message to recognise custom title
Dieser Commit ist enthalten in:
Ursprung
d376e178b4
Commit
f5fc69a908
1 geänderte Dateien mit 7 neuen und 2 gelöschten Zeilen
|
@ -422,7 +422,12 @@ class CustomWizard::Builder
|
||||||
end
|
end
|
||||||
|
|
||||||
def send_message(user, action, data)
|
def send_message(user, action, data)
|
||||||
|
|
||||||
|
unless action['custom_title_enabled']
|
||||||
title = data[action['title']]
|
title = data[action['title']]
|
||||||
|
else
|
||||||
|
title = action['custom_title']
|
||||||
|
end
|
||||||
|
|
||||||
if action['post_builder']
|
if action['post_builder']
|
||||||
post = CustomWizard::Builder.fill_placeholders(action['post_template'], user, data)
|
post = CustomWizard::Builder.fill_placeholders(action['post_template'], user, data)
|
||||||
|
|
Laden …
In neuem Issue referenzieren