The code powering m.abunchtell.com https://m.abunchtell.com
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

12 righe
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