mirror of
https://github.com/micromdm/micromdm/
synced 2026-08-18 11:35:34 +08:00
* Send APNS push to UDID after Commands being queued. In support of #100. Create a new protobuf & message type for post-queued commands. The push service listens for these and pushes to the devices as appropriate. * Break out subscriber as method on Push * Refactor event passing to use a struct * Error on nil argument
9 lines
127 B
Protocol Buffer
9 lines
127 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package commandqueued;
|
|
|
|
message CommandQueued {
|
|
string device_udid = 1;
|
|
string command_uuid = 2;
|
|
}
|