Skip to content

Commit

Permalink
enable passwords on meetings (#226)
Browse files Browse the repository at this point in the history
* enable passwords on meetings

Enabling this boolean will create a password for meetings type2 like it did for type1.

See api doc for more info: https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/meetingCreate

* version bump

---------

Co-authored-by: echoboomer <scott@echoboomer.net>
  • Loading branch information
LanceSandino and echoboomer committed Apr 20, 2023
1 parent fae65c3 commit 848c118
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions backend/bot/zoom/meeting.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ def url(self):
def __create(self) -> str:
meeting_details = {
"agenda": "Incident Discussion",
"default_password": True,
"settings": {
"audio": "voip",
"host_video": False,
Expand Down
2 changes: 1 addition & 1 deletion backend/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from dotenv import load_dotenv
from typing import Dict, List

__version__ = "v1.4.8"
__version__ = "v1.4.9"

# .env parse
dotenv_path = os.path.join(os.path.dirname(__file__), ".env")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ bases:

images:
- name: eb129/incident-bot
newTag: v1.4.8
newTag: v1.4.9

configMapGenerator:
- name: incident-bot-config
Expand Down
2 changes: 1 addition & 1 deletion docs/deploy/overlays/production/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ bases:

images:
- name: eb129/incident-bot-docs
newTag: v1.4.8
newTag: v1.4.9

generatorOptions:
disableNameSuffixHash: true
2 changes: 1 addition & 1 deletion docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ podDisruptionBudget:
You can now install the application. As an example:

```bash
helm install echoboomer-charts/incident-bot --version 1.4.8 --values incident-bot-values.yaml --namespace incident-bot
helm install echoboomer-charts/incident-bot --version 1.4.9 --values incident-bot-values.yaml --namespace incident-bot
```

Everything that needs to be configured has been configured directly in the values file as part of the values file.
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.4.8
v1.4.9

0 comments on commit 848c118

Please sign in to comment.