cartodb/app/controllers/helpers/avatar_helper.rb
2020-06-15 10:58:47 +08:00

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