igorkasyanchuk/active_storage_validations

Validations not working on Ckeditor gem models?

Geschlossen

#145 geöffnet am 24.02.2022

 (5 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Ruby (148 Forks)github user discovery
bughelp wanted

Repository-Metriken

Stars
 (1.179 Sterne)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

Hello! I am unsure if this should mentioned here or under the ckeditor gem...

I have noticed that adding validations for file content types and sizes for Ckeditor::Picture, Ckeditor::Asset, and Ckeditor::AttachmentFile models do not seem to work.

Adding: validates :storage_data, size: { less_than: 5.megabytes }, content_type: /\Aimage\/.*\z/ or validates :storage_data, size: { less_than: 5.megabytes }, content_type: ['image/png', 'image/jpg', 'image/jpeg'] in any of the above listed models do not restrict a large image or a pdf from being uploaded. The types seem to be registered with Marcel::EXTENSIONS

ckeditor gem (5.1.1) active_storage_validations gem (0.9.6)

Contributor Guide