2013-08-04 20:53:25 +00:00
|
|
|
class AsciicastCreator
|
|
|
|
|
2013-10-20 14:41:37 +00:00
|
|
|
def create(attributes, headers = {})
|
2013-10-11 18:44:49 +00:00
|
|
|
attributes = AsciicastParams.new(attributes, headers).to_h
|
2013-09-25 17:29:57 +00:00
|
|
|
asciicast = Asciicast.create!(attributes, without_protection: true)
|
|
|
|
AsciicastWorker.perform_async(asciicast.id)
|
2013-08-04 20:53:25 +00:00
|
|
|
|
2013-09-25 17:29:57 +00:00
|
|
|
asciicast
|
2013-08-04 20:53:25 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|