私はペーパークリップを使用してアバターをユーザーに添付します。これは正常に機能しますが、新しいユーザーが登録しようとすると、アバターが小さすぎて適切なタイプではないという不平を言います。
これは私のアバターを検証する方法です:
validates_attachment_size :avatar, :less_than => 1.megabytes
validates_attachment_content_type :avatar, :content_type => ['image/jpeg', 'image/png', 'image/gif']
これは、登録しようとすると発生するエラーです。
There were problems with the following fields:
* Avatar file size file size must be between 0 and 1048576 bytes.
* Avatar content type is not included in the list
アバターを空白にできるようにする方法はありますか?