Add support for additional attributes in Create Group API
The following attributes are already supported in the Update Group API code: * unique_project_download_limit * unique_project_download_limit_interval_in_seconds * unique_project_download_limit_allowlist * unique_project_download_limit_alertlist * auto_ban_user_on_excessive_projects_download * math_rendering_limits_enabled * lock_math_rendering_limits_enabled * duo_features_enabled * lock_duo_features_enabled * web_based_commit_signing_enabled * allow_personal_snippets They aren't documented in the Create Group API, but likely can be used for that endpoint. We need to verify whether they can be used, and add support for them. ## Implementation Guide - Follow the `CONTRIBUTING.md` guide for setting up your local development environment. - Clone the community fork of this project. - Add the above attributes to the `CreateGroupOptions` and `Group` structs in `groups.go`. - Create an integration test that uses these values to check they can be set. Note that some of them require an EE license to verify.
issue