The code powering m.abunchtell.com https://m.abunchtell.com
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

12 linhas
315 B

  1. # frozen_string_literal: true
  2. class ProcessHashtagsService < BaseService
  3. def call(status, tags = [])
  4. tags = status.text.scan(Tag::HASHTAG_RE).map(&:first) if status.local?
  5. tags.map(&:downcase).uniq.each do |tag|
  6. status.tags << Tag.where(name: tag).first_or_initialize(name: tag)
  7. end
  8. end
  9. end