From c121e8685fec9bb47e1cd744213d5e1bc9e3d7b4 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Wed, 1 Sep 2021 07:33:22 +0200 Subject: [PATCH] Fix documentation bugs. (#3321) --- .../source_control/gitlab/gitlab_group_members.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/modules/source_control/gitlab/gitlab_group_members.py b/plugins/modules/source_control/gitlab/gitlab_group_members.py index b526873d30..d11e72d92f 100644 --- a/plugins/modules/source_control/gitlab/gitlab_group_members.py +++ b/plugins/modules/source_control/gitlab/gitlab_group_members.py @@ -74,7 +74,7 @@ options: type: str purge_users: description: - - Adds/remove users of the given access_level to match the given gitlab_user/gitlab_users_access list. + - Adds/remove users of the given access_level to match the given I(gitlab_user)/I(gitlab_users_access) list. If omitted do not purge orphaned members. - Is only used when I(state=present). type: list @@ -104,7 +104,7 @@ EXAMPLES = r''' state: absent - name: Add a list of Users to A GitLab Group - gitlab_group_members: + community.general.gitlab_group_members: api_url: 'https://gitlab.example.com' api_token: 'Your-Private-Token' gitlab_group: groupname @@ -115,7 +115,7 @@ EXAMPLES = r''' state: present - name: Add a list of Users with Dedicated Access Levels to A GitLab Group - gitlab_group_members: + community.general.gitlab_group_members: api_url: 'https://gitlab.example.com' api_token: 'Your-Private-Token' gitlab_group: groupname @@ -127,7 +127,7 @@ EXAMPLES = r''' state: present - name: Add a user, remove all others which might be on this access level - gitlab_group_members: + community.general.gitlab_group_members: api_url: 'https://gitlab.example.com' api_token: 'Your-Private-Token' gitlab_group: groupname @@ -137,7 +137,7 @@ EXAMPLES = r''' state: present - name: Remove a list of Users with Dedicated Access Levels to A GitLab Group - gitlab_group_members: + community.general.gitlab_group_members: api_url: 'https://gitlab.example.com' api_token: 'Your-Private-Token' gitlab_group: groupname