Skip to content

Commit

Permalink
Update README.md to show a mixture of methods, lambdas, and values.
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Oliver <[email protected]>
  • Loading branch information
phil-6 and excid3 authored Jan 23, 2024
1 parent d5a411b commit b1c38ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ class CommentNotifier < Noticed::Event
config.apns_key = :ios_cert
config.key_id = :ios_key_id
config.team_id = :ios_team_id
config.bundle_identifier = :ios_bundle_id
config.bundle_identifier = Rails.application.credentials.dig(:ios, :bundle_identifier)
config.device_tokens = :ios_device_tokens
config.if = :send_ios_notification?
config.if = ->(notification) { recipient.send_ios_notification? }
end

def ios_format(apn)
Expand Down

0 comments on commit b1c38ed

Please sign in to comment.