Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MM-381: synced CalebMaftei master with MM & review fixes #18

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
5e6b1f8
adding new slash command options and updated README.md with their roles
Jun 29, 2021
7c18f2e
removing unecessary import
Jun 29, 2021
8eb4b00
Changes per PR with Mattermost people
Jul 20, 2021
1f9dcd8
fixing linter issues
Jul 20, 2021
c7899d8
fixed grammar, and unecessary user messages to conform to Peer review
Aug 9, 2021
1b04b6f
changed signatures to be more idiomatic. Removed unecessary paragraph…
Aug 17, 2021
04e2dcd
fixing linter issues with an unused function
Aug 17, 2021
edb570c
MM-381: synced with CalebMaftei master
raghavaggarwal2308 Apr 16, 2024
8383b93
MM-381: review fixes fro CalebMaftei
raghavaggarwal2308 Apr 16, 2024
177872a
feat: Perform changes related to CI/CD. Prepare plugin for community …
toninis Apr 18, 2024
a648fbb
MM-381: review fixes
raghavaggarwal2308 Apr 18, 2024
8045973
MM-381: review fixes for grammar
raghavaggarwal2308 Apr 18, 2024
983f8ca
MM-381: review fixes
raghavaggarwal2308 Apr 19, 2024
6bdfa93
Review fixes
raghavaggarwal2308 May 6, 2024
c0fee4a
Enabling dependabot (#136)
phoinixgrr May 24, 2024
cd4627a
[MM-107] Update plugin with respect to phase 1 upgrades (#123)
ayusht2810 May 24, 2024
5080bd6
[chore] Removal of CODEOWNERS (#140)
phoinixgrr Jun 13, 2024
1fe2881
[MI-2697]:Fixed issue #41 to restrict user for channel related comman…
Kshitij-Katiyar Jul 16, 2024
0e47d31
Merge branch 'master' of github.com:mattermost-community/mattermost-p…
raghavaggarwal2308 Jul 23, 2024
71a69f8
Fix lint errors
raghavaggarwal2308 Jul 23, 2024
3860987
Fix lint errors
raghavaggarwal2308 Jul 23, 2024
e6fd92c
Fix lint errors
raghavaggarwal2308 Jul 23, 2024
87b4165
FIx lint error
raghavaggarwal2308 Jul 23, 2024
7d22f27
Review fixes
raghavaggarwal2308 Aug 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,15 @@ type MessageTemplate struct {
}
```

## How to Dynamically Assign Team Messages

This plugin also allows system admins and team admins to change the team message of an appropriate team through a slash command, rather than adjusting the config.json.

We have provided three options that are formatted identically to the channel welcomes:
- `/welcomebot get_team_welcome` - prints the current team's welcome message if the dynamic message or the config.json message exists.
- `/welcomebot set_team_welcome [welcome message]` - sets the current team's welcome message to the one defined in the slash command.
- `/welcomebot delete_team_welcome` - deletes the current team's welcome message. This however does NOT delete any messages set inside of the config.json.

## Development

This plugin contains a server and webapp portion.
Expand Down
Loading