From 4a4053d2d75553725aefff90be22eb1a891d271f Mon Sep 17 00:00:00 2001 From: nonamethanks Date: Fri, 19 Feb 2021 00:46:31 +0100 Subject: [PATCH] Updates the BUR form to reference the new commands --- app/helpers/bulk_update_requests_helper.rb | 8 ++++++-- app/views/bulk_update_requests/_form.html.erb | 7 ++++--- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/app/helpers/bulk_update_requests_helper.rb b/app/helpers/bulk_update_requests_helper.rb index 1b007db9d..cb77f0f41 100644 --- a/app/helpers/bulk_update_requests_helper.rb +++ b/app/helpers/bulk_update_requests_helper.rb @@ -1,6 +1,6 @@ module BulkUpdateRequestsHelper def bur_script_example - <<~EOS + <<~BUR create alias bunny -> rabbit remove alias bunny -> rabbit @@ -9,7 +9,11 @@ module BulkUpdateRequestsHelper rename bunny -> rabbit + update bunny_focus -> animal_focus bunny + + nuke bunny + category touhou -> copyright - EOS + BUR end end diff --git a/app/views/bulk_update_requests/_form.html.erb b/app/views/bulk_update_requests/_form.html.erb index 41cef73d0..a07407469 100644 --- a/app/views/bulk_update_requests/_form.html.erb +++ b/app/views/bulk_update_requests/_form.html.erb @@ -2,9 +2,10 @@ <%= error_messages_for("bulk_update_request") %>

- Request aliases or implications using the format shown below. An alias makes the first tag a - synonym for the second tag. An implication makes the first tag automatically add the second tag. - A mass update replaces the first tag with the second tag without making it a permanent alias. + Request aliases or implications using the format shown below. An alias makes the first tag a + synonym for the second tag. An implication makes the first tag automatically add the second tag. + A rename replaces the first tag with the second tag without making it a permanent alias. + An update moves multiple tags and pools at once.