Sha256: bc816c7c6a20d7377276e841d880659e348faf744fda0de99ee95a17918e5fe4
Contents?: true
Size: 800 Bytes
Versions: 14
Compression:
Stored size: 800 Bytes
Contents
Notifiable.configure do |config| # The controller class that the DeviceTokenController should extend config.api_controller_class = ApplicationController # Set the params permitted for creation of device tokens # Defaults to [:token, :provider, :app_id] #config.api_device_token_params = [:token, :provider, :app_id] # The class representing the holder of the device config.user_class = User # The size of the batch of Notification Statuses kept in memory # before being saved. This should be varied with the heap size of the process # sending the notifications. Defaults to 10,000. #config.notification_status_batch_size = 10000 # Set the delivery method to test, preventing notifications from being sent # Defaults to :send #config.delivery_method = :test end
Version data entries
14 entries across 14 versions & 1 rubygems