Files
danbooru/app/helpers/bulk_update_requests_helper.rb
2021-02-19 00:46:31 +01:00

20 lines
371 B
Ruby

module BulkUpdateRequestsHelper
def bur_script_example
<<~BUR
create alias bunny -> rabbit
remove alias bunny -> rabbit
create implication bunny -> animal
remove implication bunny -> animal
rename bunny -> rabbit
update bunny_focus -> animal_focus bunny
nuke bunny
category touhou -> copyright
BUR
end
end