Skip to content

Commit

Permalink
Merge pull request #15 from arash77/remove-matrix-user-id
Browse files Browse the repository at this point in the history
Remove MATRIX USER_ID variable
  • Loading branch information
bgruening authored May 14, 2024
2 parents 0f2c5ff + 5efbb36 commit d4d928b
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/publish_content.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ jobs:
BLUESKY_PASSWORD: ${{ secrets.BLUESKY_PASSWORD }}
MATRIX_ACCESS_TOKEN: ${{ secrets.MATRIX_ACCESS_TOKEN }}
MATRIX_ROOM_ID: ${{ secrets.MATRIX_ROOM_ID }}
MATRIX_USER_ID: ${{ secrets.MATRIX_USER_ID }}
SLACK_ACCESS_TOKEN: ${{ secrets.SLACK_ACCESS_TOKEN }}
SLACK_CHANNEL_ID: ${{ secrets.SLACK_CHANNEL_ID }}
CHANGED_FILES: ${{ steps.get_changed_files.outputs.all_changed_files }}
Expand Down
1 change: 0 additions & 1 deletion lib/plugins/matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ def __init__(self, **kwargs):
self.base_url = kwargs.get("base_url", "https://matrix.org")
self.client = AsyncClient(self.base_url)
self.client.access_token = kwargs.get("access_token")
self.client.user_id = kwargs.get("user_id")
self.client.device_id = kwargs.get("device_id")
self.room_id = kwargs.get("room_id")

Expand Down
1 change: 0 additions & 1 deletion plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ plugins:
base_url: "https://matrix.org"
access_token: $MATRIX_ACCESS_TOKEN
room_id: $MATRIX_ROOM_ID
user_id: $MATRIX_USER_ID

- name: slack
class: slack.slack_client
Expand Down

0 comments on commit d4d928b

Please sign in to comment.