0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-30 00:18:22 +02:00

Add the create_profile method back since the tests use it

This commit is contained in:
Mark Haines 2016-06-17 19:20:47 +01:00
parent 0c13d45522
commit 41e4b2efea

View file

@ -17,6 +17,12 @@ from ._base import SQLBaseStore
class ProfileStore(SQLBaseStore):
def create_profile(self, user_localpart):
return self._simple_insert(
table="profiles",
values={"user_id": user_localpart},
desc="create_profile",
)
def get_profile_displayname(self, user_localpart):
return self._simple_select_one_onecol(