Skip to content
This repository was archived by the owner on Apr 4, 2024. It is now read-only.

Commit c97f4cb

Browse files
authored
Merge pull request #20 from pyropy/add-join-room
Add enter room and leave room
2 parents f33c1c6 + d581ddf commit c97f4cb

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CONTRIBUTORS.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22

33
* [Matthew D. Scholefield](https://github.com/MatthewScholefield) - Added cors allowed origins for AsyncServer [#7](https://github.com/pyropy/fastapi-socketio/pull/7)
44
* [Aaron Tolman](https://github.com/tolmanam) - Reported issue with broken pip download [#5](https://github.com/pyropy/fastapi-socketio/issues/5)
5+
* [Khiem Doan](https://github.com/khiemdoan) - Helped with cleaning up old unused dependencies[#5](https://github.com/pyropy/fastapi-socketio/issues/15)

fastapi_socketio/socket_manager.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import socketio
2-
from typing import Union
2+
from typing import Optional, Union
33
from fastapi import FastAPI
44

55

@@ -87,3 +87,12 @@ def start_background_task(self):
8787
@property
8888
def sleep(self):
8989
return self._sio.sleep
90+
91+
@property
92+
def enter_room(self, sid: str, room: str, namespace: Optional[str] = None):
93+
return self._sio.enter_room(sid, room, namespace)
94+
95+
@property
96+
def leave_room(self, sid: str, room: str, namespace: Optional[str] = None):
97+
return self._sio.leave_room(sid, room, namespace)
98+

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22
import os
33

4-
VERSION = "0.0.6"
4+
VERSION = "0.0.7"
55

66

77
def get_long_description():

0 commit comments

Comments
 (0)