Fix 'test push loop back' notification check (#5541)
Include a fake client secret as the HS would do, since it's now mandatory.
This commit is contained in:
parent
7491b5479a
commit
e74ec97ec0
3 changed files with 16 additions and 4 deletions
|
|
@ -21,5 +21,14 @@ data class PushGatewayDevice(
|
||||||
* Required. The pushkey given when the pusher was created.
|
* Required. The pushkey given when the pusher was created.
|
||||||
*/
|
*/
|
||||||
@SerialName("pushkey")
|
@SerialName("pushkey")
|
||||||
val pushKey: String
|
val pushKey: String,
|
||||||
|
/** Optional. Additional pusher data. */
|
||||||
|
@SerialName("data")
|
||||||
|
val data: PusherData? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class PusherData(
|
||||||
|
@SerialName("default_payload")
|
||||||
|
val defaultPayload: Map<String, String>,
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -20,5 +20,5 @@ data class PushGatewayNotification(
|
||||||
* Required. This is an array of devices that the notification should be sent to.
|
* Required. This is an array of devices that the notification should be sent to.
|
||||||
*/
|
*/
|
||||||
@SerialName("devices")
|
@SerialName("devices")
|
||||||
val devices: List<PushGatewayDevice>
|
val devices: List<PushGatewayDevice>,
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -42,9 +42,12 @@ class DefaultPushGatewayNotifyRequest(
|
||||||
devices = listOf(
|
devices = listOf(
|
||||||
PushGatewayDevice(
|
PushGatewayDevice(
|
||||||
params.appId,
|
params.appId,
|
||||||
params.pushKey
|
params.pushKey,
|
||||||
|
PusherData(mapOf(
|
||||||
|
"cs" to "A_FAKE_SECRET",
|
||||||
|
))
|
||||||
)
|
)
|
||||||
)
|
),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue