@@ -76,7 +76,7 @@ shared:
7676 # Token auth params
7777 # See https://developer.apple.com/documentation/usernotifications/establishing-a-token-based-connection-to-apns
7878 key_id : <%= Rails.application.credentials.dig(:action_push_native, :apns, :key_id) %>
79- encryption_key : <%= Rails.application.credentials.dig(:action_push_native, :apns, :encryption_key) %>
79+ encryption_key : <%= Rails.application.credentials.dig(:action_push_native, :apns, :encryption_key).dump %>
8080
8181 team_id : your_apple_team_id
8282 # Your identifier found on https://developer.apple.com/account/resources/identifiers/list
@@ -85,7 +85,7 @@ shared:
8585 google :
8686 # Your Firebase project service account credentials
8787 # See https://firebase.google.com/docs/cloud-messaging/auth-server
88- encryption_key : <%= Rails.application.credentials.dig(:action_push_native, :fcm, :encryption_key) %>
88+ encryption_key : <%= Rails.application.credentials.dig(:action_push_native, :fcm, :encryption_key).dump %>
8989
9090 # Firebase project_id
9191 project_id : your_project_id
@@ -131,31 +131,31 @@ shared:
131131 # Token auth params
132132 # See https://developer.apple.com/documentation/usernotifications/establishing-a-token-based-connection-to-apns
133133 key_id: <%= Rails.application.credentials.dig(:action_push_native, :apns, :calendar, :key_id) % >
134- encryption_key: <%= Rails.application.credentials.dig(:action_push_native, :apns, :calendar, :encryption_key) % >
134+ encryption_key: <%= Rails.application.credentials.dig(:action_push_native, :apns, :calendar, :encryption_key).dump % >
135135 # Your identifier found on https://developer.apple.com/account/resources/identifiers/list
136136 topic: calendar.bundle.identifier
137137
138138 email:
139139 # Token auth params
140140 # See https://developer.apple.com/documentation/usernotifications/establishing-a-token-based-connection-to-apns
141141 key_id: <%= Rails.application.credentials.dig(:action_push_native, :apns, :email, :key_id) % >
142- encryption_key: <%= Rails.application.credentials.dig(:action_push_native, :apns, :email, :encryption_key) % >
142+ encryption_key: <%= Rails.application.credentials.dig(:action_push_native, :apns, :email, :encryption_key).dump % >
143143 # Your identifier found on https://developer.apple.com/account/resources/identifiers/list
144144 topic: email.bundle.identifier
145145
146146 google:
147147 calendar:
148148 # Your Firebase project service account credentials
149149 # See https://firebase.google.com/docs/cloud-messaging/auth-server
150- encryption_key: <%= Rails.application.credentials.dig(:action_push_native, :fcm, :calendar, :encryption_key) % >
150+ encryption_key: <%= Rails.application.credentials.dig(:action_push_native, :fcm, :calendar, :encryption_key).dump % >
151151
152152 # Firebase project_id
153153 project_id: calendar_project_id
154154
155155 email:
156156 # Your Firebase project service account credentials
157157 # See https://firebase.google.com/docs/cloud-messaging/auth-server
158- encryption_key: <%= Rails.application.credentials.dig(:action_push_native, :fcm, :email, :encryption_key) % >
158+ encryption_key: <%= Rails.application.credentials.dig(:action_push_native, :fcm, :email, :encryption_key).dump % >
159159
160160 # Firebase project_id
161161 project_id: email_project_id
0 commit comments