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
# 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
|