volunteers/app/models/story.rb

10 lines
130 B
Ruby
Raw Normal View History

2023-01-11 17:48:06 +01:00
class Story < ApplicationRecord
2023-01-11 19:52:58 +01:00
belongs_to :member
mount_uploader :picture, PictureUploader
def name
header
end
2023-01-11 17:48:06 +01:00
end