Commit 7498807c authored by Benoit Orihuela's avatar Benoit Orihuela
Browse files

Merge branch 'fix/fix-subscription-update-fragment' into 'develop'

fix: update subscription update fragments

See merge request !61
parents 60256cf5 2ad06d03
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
{
   "type":"Subscription",
   "entities":[
      {
         "type":"Building"
      }
   ]
   ],
   "notification":{
      "format":"keyValues",
      "endpoint":{
         "uri":"http://my.endpoint.org/notify",
         "accept":"application/json"
      }
   }
}
 No newline at end of file
+9 −1
Original line number Diff line number Diff line
{
   "expiresAt": "2030-08-01T22:07:00Z"
   "type":"Subscription",
   "expiresAt": "2030-08-01T22:07:00Z",
   "notification":{
      "format":"keyValues",
      "endpoint":{
         "uri":"http://my.endpoint.org/notify",
         "accept":"application/json"
      }
   }
}
 No newline at end of file
+9 −1
Original line number Diff line number Diff line
{
   "expiresAt": "2020-08-01T22:07:00Z"
   "type":"Subscription",
   "expiresAt": "2020-08-01T22:07:00Z",
   "notification":{
      "format":"keyValues",
      "endpoint":{
         "uri":"http://my.endpoint.org/notify",
         "accept":"application/json"
      }
   }
}
 No newline at end of file
+9 −1
Original line number Diff line number Diff line
{
   "type":"Subscription",
   "isActive": true,
   "expiresAt": null
   "expiresAt": null,
   "notification":{
      "format":"keyValues",
      "endpoint":{
         "uri":"http://my.endpoint.org/notify",
         "accept":"application/json"
      }
   }
}
 No newline at end of file
+9 −1
Original line number Diff line number Diff line
{
   "type":"Subscription",
   "isActive": true,
   "expiresAt": "2030-08-01T22:07:00Z"
   "expiresAt": "2030-08-01T22:07:00Z",
   "notification":{
      "format":"keyValues",
      "endpoint":{
         "uri":"http://my.endpoint.org/notify",
         "accept":"application/json"
      }
   }
}
 No newline at end of file
Loading