From cb85fc5077cbb41f34673e6815eadfced49d3ceb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andr=C3=A9=20Sterba?= <andre.sterba@stud.h-da.de>
Date: Mon, 4 Jul 2022 16:56:30 +0200
Subject: [PATCH] Fix build

---
 applications/example-application/app.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/applications/example-application/app.go b/applications/example-application/app.go
index 8bcb2b804..262e9f8f3 100644
--- a/applications/example-application/app.go
+++ b/applications/example-application/app.go
@@ -60,7 +60,7 @@ func (a *Application) callback(event *event.Event) {
 	request := &rbac.GetUserRequest{
 		Timestamp: time.Now().UnixNano(),
 		Name:      event.ID.String(),
-		Uuid:      event.EntityID.String(),
+		Id:        event.EntityID.String(),
 	}
 
 	response, err := userService.GetUser(ctx, request)
-- 
GitLab