From 459bbfa4b21c20809a142c41c389b7a5edd28bd8 Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Mon, 8 May 2017 23:49:53 +0900 Subject: Prevent selection of unacceptable Content-Type files (#2910) * Prevent selection of unacceptable Content-Type files * replace hard code * media_attachments accept content-types in initial state --- app/views/settings/profiles/show.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/views/settings/profiles/show.html.haml') diff --git a/app/views/settings/profiles/show.html.haml b/app/views/settings/profiles/show.html.haml index ed76885de..7b97fcae0 100644 --- a/app/views/settings/profiles/show.html.haml +++ b/app/views/settings/profiles/show.html.haml @@ -7,8 +7,8 @@ .fields-group = f.input :display_name, placeholder: t('simple_form.labels.defaults.display_name'), hint: t('simple_form.hints.defaults.display_name', counter: "#{30 - @account.display_name.size}").html_safe = f.input :note, placeholder: t('simple_form.labels.defaults.note'), hint: t('simple_form.hints.defaults.note', counter: "#{160 - @account.note.size}").html_safe - = f.input :avatar, wrapper: :with_label, hint: t('simple_form.hints.defaults.avatar') - = f.input :header, wrapper: :with_label, hint: t('simple_form.hints.defaults.header') + = f.input :avatar, wrapper: :with_label, input_html: { accept: AccountAvatar::IMAGE_MIME_TYPES.join(',') }, hint: t('simple_form.hints.defaults.avatar') + = f.input :header, wrapper: :with_label, input_html: { accept: AccountHeader::IMAGE_MIME_TYPES.join(',') }, hint: t('simple_form.hints.defaults.header') = f.input :locked, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.locked') -- cgit