Explorar el Código

Fetch all feeds through delayed job

master
Adrian Short hace 11 años
padre
commit
179d5957bb
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      app/models/feed.rb

+ 1
- 1
app/models/feed.rb Ver fichero

@@ -9,7 +9,7 @@ class Feed < ActiveRecord::Base
after_create :fetch
def self.fetch_all
Feed.all.each { |f| f.fetch }
Feed.all.each { |f| f.delay.fetch }
end

# Fetch and parse feed contents from web


Cargando…
Cancelar
Guardar