Как я могу вернуть события от других пользователей в API python-gitlab?
Кажется, я не могу понять, как заставить конечную точку событий gitlab возвращать события для пользователей, отличных от меня, с помощью пакета python-gitlab.
Этот код:
import gitlab
gl = gitlab.Gitlab('https://gitlab.mydomain.com', private_token='hunter2')
gl.auth()
events = gl.events.list()
for item in events:
print(item.created_at + " " + item.author_username + " " + item.action_name + " " + gl.projects.get(item.project_id).name)
печатает следующее:
2019-05-14T23:27:04.627Z my_user accepted projectname_foo
2019-05-14T23:27:03.902Z my_user pushed to project_bar
2019-03-21T21:39:27.484Z my_user pushed new project_baz
Is there a way to retrieve events from other users? I have admin access to my gitlab server, but I have been unsuccessful in trying to sudo over to the other user that I would like to query and am not sure what other options I have.
TIA