1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
//! Get project events //! //! https://docs.gitlab.com/ce/api/projects.html#get-project-events //! //! # Get project events //! //! Get the events for the specified project. //! Sorted from newest to oldest //! //! ```text //! GET /projects/ID/events //! ``` //! //! Parameters: //! //! | Attribute | Type | Required | Description | //! | --------- | ---- | -------- | ----------- | //! | `id` | integer/string | yes | The ID or `NAMESPACE/PROJECT_NAME` of the project | //! //!