Update action.rb
Dieser Commit ist enthalten in:
Ursprung
7950485e12
Commit
d65eb923d9
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
|
@ -54,7 +54,7 @@ class CustomWizard::Action
|
||||||
end
|
end
|
||||||
|
|
||||||
if creator.errors.blank?
|
if creator.errors.blank?
|
||||||
log_success("created topic", post.topic.id)
|
log_success("created topic", "id: #{post.topic.id}")
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
log_error("invalid topic params", "title: #{params[:title]}; post: #{params[:raw]}")
|
log_error("invalid topic params", "title: #{params[:title]}; post: #{params[:raw]}")
|
||||||
|
@ -92,7 +92,7 @@ class CustomWizard::Action
|
||||||
end
|
end
|
||||||
|
|
||||||
if creator.errors.blank?
|
if creator.errors.blank?
|
||||||
log_error("created message", post.topic.id)
|
log_error("created message", "id: #{post.topic.id}")
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
log_error(
|
log_error(
|
||||||
|
|
Laden …
In neuem Issue referenzieren