mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-28 21:01:02 +08:00
11 lines
245 B
Ruby
11 lines
245 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :notification_subscription do
|
|
user
|
|
identifier { 'test' }
|
|
subscription_type { 'browser_push' }
|
|
subscription_attributes { { endpoint: 'test', auth: 'test' } }
|
|
end
|
|
end
|