device: add type id and credential id to enrollment for easier referencing (#2749)

This commit is contained in:
Caleb Doxsey 2021-11-05 09:48:45 -06:00 committed by GitHub
parent 4cb3281af7
commit 85bb396555
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 87 additions and 55 deletions

View file

@ -56,6 +56,8 @@ message Type {
// An Enrollment is used to approve a user's device.
message Enrollment {
string id = 1;
string type_id = 7;
string credential_id = 8;
string user_id = 2;
string approved_by = 3;
google.protobuf.Timestamp enrolled_at = 4;