Added delayed jobs

This commit is contained in:
magnolia-fan
2011-06-20 01:23:22 +04:00
parent ec90fe57f2
commit a7b36e6d0e
10 changed files with 81 additions and 33 deletions
+5
View File
@@ -0,0 +1,5 @@
class LoadArtistJob < Struct.new(:name)
def perform
ImportController.importArtist(name)
end
end