8 lines
190 B
Ruby
8 lines
190 B
Ruby
|
module AvatarHelper
|
||
|
AVATAR_VALID_EXTENSIONS = %w{ jpeg jpg gif png }
|
||
|
|
||
|
def valid_avatar_file?(file_src)
|
||
|
AVATAR_VALID_EXTENSIONS.include?(File.extname(file_src).tr('.', ''))
|
||
|
end
|
||
|
end
|