noesya/osuny

View on GitHub
app/models/concerns/shareable.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module Shareable
  extend ActiveSupport::Concern

  included do
    has_one_attached_deletable :shared_image

    validates :shared_image, size: { less_than: 500.kilobytes }
  end
end