Browse Source

Move Article from supported to converted types (#6218)

master
puckipedia 6 years ago
committed by Eugen Rochko
parent
commit
0eff42d688
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app/lib/activitypub/activity/create.rb

+ 2
- 2
app/lib/activitypub/activity/create.rb View File

@ -1,8 +1,8 @@
# frozen_string_literal: true
class ActivityPub::Activity::Create < ActivityPub::Activity
SUPPORTED_TYPES = %w(Article Note).freeze
CONVERTED_TYPES = %w(Image Video).freeze
SUPPORTED_TYPES = %w(Note).freeze
CONVERTED_TYPES = %w(Image Video Article).freeze
def perform
return if delete_arrived_first?(object_uri) || unsupported_object_type?

Loading…
Cancel
Save