mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-06 10:25:09 +01:00
e234a89e06
Subscriptions can be made and new statuses will be announced to subscribed fasp.
13 lines
283 B
Ruby
13 lines
283 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator('Fasp::Subscription') do
|
|
category 'MyString'
|
|
subscription_type 'MyString'
|
|
max_batch_size 1
|
|
threshold_timeframe 1
|
|
threshold_shares 1
|
|
threshold_likes 1
|
|
threshold_replies 1
|
|
fasp_provider nil
|
|
end
|