The code powering m.abunchtell.com https://m.abunchtell.com
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

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