1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/models/user_avatar.rb

8 lines
189 B
Ruby
Raw Normal View History

2020-03-30 11:33:12 +02:00
# frozen_string_literal: true
# UserAvatar is the profile picture for an User
2015-05-05 03:10:25 +02:00
class UserAvatar < Asset
include ImageValidatorConcern
mount_uploader :attachment, UserAvatarUploader
2015-05-05 03:10:25 +02:00
end