mirror of
https://github.com/GAM-team/GAM.git
synced 2026-07-03 20:31:35 +00:00
Update Users-Chat.md
This commit is contained in:
@@ -7,10 +7,10 @@
|
|||||||
- [Chat Space Permissions](#chat-space-permissions)
|
- [Chat Space Permissions](#chat-space-permissions)
|
||||||
- [Manage Chat Spaces](#manage-chat-spaces)
|
- [Manage Chat Spaces](#manage-chat-spaces)
|
||||||
- [Display Chat Spaces](#display-chat-spaces)
|
- [Display Chat Spaces](#display-chat-spaces)
|
||||||
- [Manage Chat Users Sections](#manage-chat-users-sections)
|
- [Manage Chat User Sections](#manage-chat-user-sections)
|
||||||
- [Display Chat Users Sections](#display-chat-users-sections)
|
- [Display Chat User Sections](#display-chat-user-sections)
|
||||||
- [Manage Chat Users Sections Items](#manage-chat-users-sections-items)
|
- [Manage Chat User Sections Items](#manage-chat-user-sections-items)
|
||||||
- [Display Chat Users Sections Items](#display-chat-users-sections-items)
|
- [Display Chat User Sections Items](#display-chat-user-sections-items)
|
||||||
- [UI API member role mapping](#ui-api-mwmber-role-mapping)
|
- [UI API member role mapping](#ui-api-mwmber-role-mapping)
|
||||||
- [Manage Chat Members](#manage-chat-members)
|
- [Manage Chat Members](#manage-chat-members)
|
||||||
- [Display Chat Members](#display-chat-members)
|
- [Display Chat Members](#display-chat-members)
|
||||||
@@ -34,10 +34,10 @@ gam user user@domain.com update serviceaccount
|
|||||||
[*] 8) Chat API - Spaces Admin (supports readonly)
|
[*] 8) Chat API - Spaces Admin (supports readonly)
|
||||||
[*] 9) Chat API - Spaces Delete
|
[*] 9) Chat API - Spaces Delete
|
||||||
[*] 10) Chat API - Spaces Delete Admin
|
[*] 10) Chat API - Spaces Delete Admin
|
||||||
[*] 11) Chat API - Users Sections (supports readonly)
|
[*] 11) Chat API - User Sections (supports readonly)
|
||||||
|
|
||||||
```
|
```
|
||||||
`Chat API - Users Sections` is in Developer preview.
|
`Chat API - User Sections` is in Developer Preview.
|
||||||
|
|
||||||
Added `use_chat_admin_access` Boolean variable to `gam.cfg`.
|
Added `use_chat_admin_access` Boolean variable to `gam.cfg`.
|
||||||
```
|
```
|
||||||
@@ -67,7 +67,7 @@ Google requires that you have a Chat Bot configured in order to use the Chat API
|
|||||||
* [Chat API - Members](https://developers.google.com/workspace/chat/api/reference/rest/v1/spaces.members/list)
|
* [Chat API - Members](https://developers.google.com/workspace/chat/api/reference/rest/v1/spaces.members/list)
|
||||||
* [Chat API - Messages](https://developers.google.com/workspace/chat/api/reference/rest/v1/spaces.messages/list)
|
* [Chat API - Messages](https://developers.google.com/workspace/chat/api/reference/rest/v1/spaces.messages/list)
|
||||||
* [Chat API - Events](https://developers.google.com/workspace/chat/api/reference/rest/v1/spaces.spaceEvents/list)
|
* [Chat API - Events](https://developers.google.com/workspace/chat/api/reference/rest/v1/spaces.spaceEvents/list)
|
||||||
* [Chat API - Users Sections](https://developers.google.com/workspace/chat/api/reference/rest/v1/users.sections)
|
* [Chat API - User Sections](https://developers.google.com/workspace/chat/api/reference/rest/v1/users.sections)
|
||||||
* [Apps in Google Chat](https://support.google.com/chat/answer/7655820)
|
* [Apps in Google Chat](https://support.google.com/chat/answer/7655820)
|
||||||
* [Manage customemoji permissions](https://support.google.com/a/answer/12850085)
|
* [Manage customemoji permissions](https://support.google.com/a/answer/12850085)
|
||||||
* [Manage Spaces in Admin Console](https://support.google.com/a/answer/13369245)
|
* [Manage Spaces in Admin Console](https://support.google.com/a/answer/13369245)
|
||||||
@@ -104,6 +104,8 @@ Google requires that you have a Chat Bot configured in order to use the Chat API
|
|||||||
<ChatMember> ::= spaces/<String>/members/<String>
|
<ChatMember> ::= spaces/<String>/members/<String>
|
||||||
<ChatMemberList> ::= "<ChatMember>(,<ChatMember>)*"
|
<ChatMemberList> ::= "<ChatMember>(,<ChatMember>)*"
|
||||||
<ChatMessage> ::= spaces/<String>/messages/<String>
|
<ChatMessage> ::= spaces/<String>/messages/<String>
|
||||||
|
<ChatSection> ::= users/<String>/sections/<String> | sections/<String> | section <String>
|
||||||
|
<ChatSectionItem> ::= users/<String>/sections/<String>/items/<String> | sections/<String>/items/<String>
|
||||||
<ChatSpace> ::= spaces/<String> | space <String> | space spaces/<String>
|
<ChatSpace> ::= spaces/<String> | space <String> | space spaces/<String>
|
||||||
<ChatThread> ::= spaces/<String>/threads/<String>
|
<ChatThread> ::= spaces/<String>/threads/<String>
|
||||||
<ChatSpaceType> ::=
|
<ChatSpaceType> ::=
|
||||||
@@ -430,7 +432,7 @@ When using the `formatjson` option, double quotes are used extensively in the da
|
|||||||
The `quotechar <Character>` option allows you to choose an alternate quote character, single quote for instance, that makes for readable/processable output.
|
The `quotechar <Character>` option allows you to choose an alternate quote character, single quote for instance, that makes for readable/processable output.
|
||||||
`quotechar` defaults to `gam.cfg/csv_output_quote_char`. When uploading CSV files to Google, double quote `"` should be used.
|
`quotechar` defaults to `gam.cfg/csv_output_quote_char`. When uploading CSV files to Google, double quote `"` should be used.
|
||||||
|
|
||||||
## Manage Chat Users Sections
|
## Manage Chat User Sections
|
||||||
### Create a user's chat section
|
### Create a user's chat section
|
||||||
```
|
```
|
||||||
gam <UserTypeEntity> create chatsection
|
gam <UserTypeEntity> create chatsection
|
||||||
@@ -451,7 +453,7 @@ gam <UserTypeEntity> update chatsection <ChatSection>
|
|||||||
gam <UserTypeEntity> delete chatsection <ChatSection>
|
gam <UserTypeEntity> delete chatsection <ChatSection>
|
||||||
```
|
```
|
||||||
|
|
||||||
## Display Chat Users Sections
|
## Display Chat User Sections
|
||||||
### Display information about all of a user's chat sections
|
### Display information about all of a user's chat sections
|
||||||
```
|
```
|
||||||
gam <UserTypeEntity> show chatsections
|
gam <UserTypeEntity> show chatsections
|
||||||
@@ -472,13 +474,13 @@ When using the `formatjson` option, double quotes are used extensively in the da
|
|||||||
The `quotechar <Character>` option allows you to choose an alternate quote character, single quote for instance, that makes for readable/processable output.
|
The `quotechar <Character>` option allows you to choose an alternate quote character, single quote for instance, that makes for readable/processable output.
|
||||||
`quotechar` defaults to `gam.cfg/csv_output_quote_char`. When uploading CSV files to Google, double quote `"` should be used.
|
`quotechar` defaults to `gam.cfg/csv_output_quote_char`. When uploading CSV files to Google, double quote `"` should be used.
|
||||||
|
|
||||||
## Manage Chat Users Section Items
|
## Manage Chat User Section Items
|
||||||
### Move a user's chat section item to a different chat section
|
### Move a user's chat section item to a different chat section
|
||||||
```
|
```
|
||||||
gam <UserTypeEntity> move chatsectionitem <ChatSectionItem> to <ChatSection>
|
gam <UserTypeEntity> move chatsectionitem <ChatSectionItem> to <ChatSection>
|
||||||
```
|
```
|
||||||
|
|
||||||
## Display Chat Users Section Items
|
## Display Chat User Section Items
|
||||||
### Display information about a user's chat section items
|
### Display information about a user's chat section items
|
||||||
```
|
```
|
||||||
gam <UserTypeEntity> show chatsectionitems <ChatSection>
|
gam <UserTypeEntity> show chatsectionitems <ChatSection>
|
||||||
|
|||||||
Reference in New Issue
Block a user