From 32af9b3e0812d6c8002732bcc213b96657f60630 Mon Sep 17 00:00:00 2001 From: Felix Kampfer Date: Wed, 2 Nov 2022 10:23:30 +0100 Subject: [PATCH] add SharedWithGroups.GroupFullPath field to projects.go --- projects.go | 1 + 1 file changed, 1 insertion(+) diff --git a/projects.go b/projects.go index 6afc4c60b..151d0a60d 100644 --- a/projects.go +++ b/projects.go @@ -120,6 +120,7 @@ type Project struct { SharedWithGroups []struct { GroupID int `json:"group_id"` GroupName string `json:"group_name"` + GroupFullPath string `json:"group_full_path"` GroupAccessLevel int `json:"group_access_level"` } `json:"shared_with_groups"` Statistics *Statistics `json:"statistics"`