artist commentary form: add partial_commentary checkbox.

Add a checkbox for adding/removing the partial_commentary tag in the
artist commentary form.

ref: https://danbooru.donmai.us/forum_topics/15101.
This commit is contained in:
evazion
2018-04-29 22:05:59 -05:00
parent 21431892e8
commit 7e99a1b38b
3 changed files with 28 additions and 4 deletions

View File

@@ -40,8 +40,8 @@ private
def commentary_params
params.fetch(:artist_commentary, {}).except(:post_id).permit(%i[
original_description original_title translated_description translated_title
remove_commentary_tag remove_commentary_request_tag remove_commentary_check_tag
add_commentary_tag add_commentary_request_tag add_commentary_check_tag
remove_commentary_tag remove_commentary_request_tag remove_commentary_check_tag remove_partial_commentary_tag
add_commentary_tag add_commentary_request_tag add_commentary_check_tag add_partial_commentary_tag
])
end
end