commentaries: move search form to /artist_commentaries page.

* Move the commentary search form to the /artist_commentaries page.
* Add Order field for changing the sort order.
This commit is contained in:
evazion
2022-06-05 14:15:18 -05:00
parent 05df3a194c
commit 907194fc6f
6 changed files with 30 additions and 6 deletions

View File

@@ -25,6 +25,7 @@ class ArtistCommentariesControllerTest < ActionDispatch::IntegrationTest
should respond_to_search(original_present: "true").with { [@other_commentary, @commentary] }
should respond_to_search(translated_present: "true").with { @commentary }
should respond_to_search(is_deleted: "yes").with { @deleted_commentary }
should respond_to_search(order: "id_asc").with { [@commentary, @other_commentary, @deleted_commentary] }
context "using includes" do
should respond_to_search(post_id: 999).with { @commentary }