You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
359 B
21 lines
359 B
7 years ago
|
# frozen_string_literal: true
|
||
|
|
||
|
class Ostatus::Activity::General < Ostatus::Activity::Base
|
||
|
def specialize
|
||
|
special_class&.new(@xml, @account)
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def special_class
|
||
|
case verb
|
||
|
when :post
|
||
|
Ostatus::Activity::Post
|
||
|
when :share
|
||
|
Ostatus::Activity::Share
|
||
|
when :delete
|
||
|
Ostatus::Activity::Deletion
|
||
|
end
|
||
|
end
|
||
|
end
|