a9c304f1ef
An initial version of twitter integration Co-authored-by: Sojan Jose <sojan@pepalo.com>
11 lines
314 B
Ruby
11 lines
314 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :channel_twitter_profile, class: 'Channel::TwitterProfile' do
|
|
name { Faker::Name.name }
|
|
twitter_access_token { SecureRandom.uuid }
|
|
twitter_access_token_secret { SecureRandom.uuid }
|
|
profile_id { SecureRandom.uuid }
|
|
account
|
|
end
|
|
end
|