13 lines
221 B
Ruby
13 lines
221 B
Ruby
class Story < ApplicationRecord
|
|
belongs_to :member
|
|
|
|
mount_uploader :picture, PictureUploader
|
|
|
|
validates :text, length: { maximum: 1000 }
|
|
validates :header , length: { minimum: 5 }
|
|
|
|
def name
|
|
header
|
|
end
|
|
end
|