forked from platypush/platypush
Changed autojoin_on_invite default value
This commit is contained in:
parent
7ab02e705d
commit
354f3906f9
1 changed files with 3 additions and 3 deletions
|
@ -94,7 +94,7 @@ class MatrixClient(AsyncClient):
|
||||||
credentials_file: str,
|
credentials_file: str,
|
||||||
store_path: str | None = None,
|
store_path: str | None = None,
|
||||||
config: AsyncClientConfig | None = None,
|
config: AsyncClientConfig | None = None,
|
||||||
autojoin_on_invite=False,
|
autojoin_on_invite=True,
|
||||||
**kwargs,
|
**kwargs,
|
||||||
):
|
):
|
||||||
credentials_file = os.path.abspath(os.path.expanduser(credentials_file))
|
credentials_file = os.path.abspath(os.path.expanduser(credentials_file))
|
||||||
|
@ -458,7 +458,7 @@ class MatrixPlugin(RunnablePlugin):
|
||||||
access_token: str | None = None,
|
access_token: str | None = None,
|
||||||
device_name: str | None = 'platypush',
|
device_name: str | None = 'platypush',
|
||||||
device_id: str | None = None,
|
device_id: str | None = None,
|
||||||
autojoin_on_invite: bool = False,
|
autojoin_on_invite: bool = True,
|
||||||
**kwargs,
|
**kwargs,
|
||||||
):
|
):
|
||||||
"""
|
"""
|
||||||
|
@ -480,7 +480,7 @@ class MatrixPlugin(RunnablePlugin):
|
||||||
:param device_name: The name of this device/connection (default: ``platypush``).
|
:param device_name: The name of this device/connection (default: ``platypush``).
|
||||||
:param device_id: Use an existing ``device_id`` for the sessions.
|
:param device_id: Use an existing ``device_id`` for the sessions.
|
||||||
:param autojoin_on_invite: Whether the account should automatically join rooms
|
:param autojoin_on_invite: Whether the account should automatically join rooms
|
||||||
upon invite. If false (default value), then you may want to implement your own
|
upon invite. If false, then you may want to implement your own
|
||||||
logic in an event hook when a :class:`platypush.message.event.matrix.MatrixRoomInviteEvent`
|
logic in an event hook when a :class:`platypush.message.event.matrix.MatrixRoomInviteEvent`
|
||||||
event is received, and call the :meth:`.join` method if required.
|
event is received, and call the :meth:`.join` method if required.
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue