8 lines
256 B
Plaintext
8 lines
256 B
Plaintext
<% if @error %>
|
|
{"success": false, "errors": <%= @error.to_s.to_json.html_safe %>}
|
|
<% elsif @comment_vote.errors.any? %>
|
|
{"success": false, "errors": <%= @comment_vote.errors.full_messages.to_json.html_safe %>}
|
|
<% else %>
|
|
{"success": true}
|
|
<% end %>
|