mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
11 lines
448 B
Ruby
11 lines
448 B
Ruby
class Sponsor < ActiveRecord::Base
|
|
belongs_to :sponsorship_level
|
|
belongs_to :conference
|
|
has_attached_file :logo,
|
|
styles: { thumb: '100x100>', large: '300x300>' }
|
|
|
|
validates_attachment_content_type :logo,
|
|
content_type: [/jpg/, /jpeg/, /png/, /gif/],
|
|
size: { in: 0..500.kilobytes }
|
|
validates_presence_of :name, :website_url, :sponsorship_level
|
|
end
|