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

[MI-3199]: Developed a table to display the existing config of plugin #5

Merged
merged 22 commits into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2a973c5
Developed table to display existing configs of plugin
Kshitij-Katiyar Jun 26, 2023
a3b66d0
Updated .gitignore to exclude node_modules
Kshitij-Katiyar Jun 26, 2023
664f8c2
Fixed .gitignore to exclude node_modules
Kshitij-Katiyar Jun 26, 2023
8c3cf4e
Developed a table to display existing config
Kshitij-Katiyar Jun 26, 2023
24e0ec1
Developed a table to show existing plugin config
Kshitij-Katiyar Jun 26, 2023
e5dea39
setup redux store and add reducer to show/hide attachment message modal
Kshitij-Katiyar Jun 27, 2023
cb86cf5
Added modal to show attachment message of config
Kshitij-Katiyar Jun 28, 2023
e3c57b2
Removed node modules
Kshitij-Katiyar Jun 28, 2023
2cd44bf
[MI-3199]: Removed node modules
Kshitij-Katiyar Jun 28, 2023
f0a2e04
Merge branch 'MI-3173' of github.com:Brightscout/mattermost-plugin-we…
Kshitij-Katiyar Jul 3, 2023
584af51
Merge branch 'MI-3173' of github.com:Brightscout/mattermost-plugin-we…
Kshitij-Katiyar Jul 3, 2023
c06c92a
[MI-3199]: Removed extra files and added eod in gitignore
Kshitij-Katiyar Jul 10, 2023
9e59fd3
[MI-3199]: Fixed lint errors
Kshitij-Katiyar Jul 10, 2023
4fd5dd2
Merge branch 'MI-3173' of github.com:Brightscout/mattermost-plugin-we…
Kshitij-Katiyar Jul 11, 2023
b20814b
[MI-3199]: Removed unwanted files from webapp
Kshitij-Katiyar Jul 19, 2023
414e864
[MI-3199]: Removed extra todo comments
Kshitij-Katiyar Aug 1, 2023
5e6f8b5
Merge branch 'MI-3173' of github.com:Brightscout/mattermost-plugin-we…
Kshitij-Katiyar Aug 1, 2023
5f667b0
[MI-3199]: Resolved missing imports in existingConfigTable
Kshitij-Katiyar Aug 1, 2023
4639074
[MI-3199]: removed extra folders
Kshitij-Katiyar Aug 2, 2023
4494be8
[MI-3199]: Added eod to styles.css
Kshitij-Katiyar Aug 21, 2023
2fbf310
[MI-3199]: Fixed review comments by abhishek
Kshitij-Katiyar Aug 24, 2023
4f79ae0
[MI-3230]: Developed a modal which opens on click of view button in c…
Kshitij-Katiyar Sep 1, 2023
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
12 changes: 11 additions & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "Configure this plugin directly in the config.json file. Learn more [in our documentation](https://github.com/mattermost/mattermost-plugin-welcomebot/blob/master/README.md).\n\n To report an issue, make a suggestion, or submit a contribution, [check the plugin repository](https://github.com/mattermost/mattermost-plugin-welcomebot)."
"header": "Configure this plugin directly in the config.json file. Learn more [in our documentation](https://github.com/mattermost/mattermost-plugin-welcomebot/blob/master/README.md).\n\n To report an issue, make a suggestion, or submit a contribution, [check the plugin repository](https://github.com/mattermost/mattermost-plugin-welcomebot).",
"settings": [
{
"key": "ExistingConfigurationTable",
"display_name": "Existing Configurations:",
"type": "custom",
"help_text": "",
"placeholder": "",
"default": ""
Kshitij-Katiyar marked this conversation as resolved.
Show resolved Hide resolved
}
]
}
}
Loading