Show "Favgroup already contains post XXX" error when trying to add a post to a favgroup that already contains that post.
8 lines
272 B
Plaintext
8 lines
272 B
Plaintext
<% if @favorite_group.errors.any? %>
|
|
Danbooru.notice("<%= j @favorite_group.errors.full_messages.join("; ") %>");
|
|
<% else %>
|
|
Danbooru.notice("Added post to favorite group <%= j @favorite_group.pretty_name %>");
|
|
<% end %>
|
|
|
|
$("#add-to-favgroup-dialog").dialog("close");
|