cartodb/app/controllers/helpers/avatar_helper.rb

8 lines
190 B
Ruby
Raw Normal View History

2020-06-15 10:58:47 +08:00
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