Remove unused `get_room_stats_state` method. (#6869)

pull/6883/head
Richard van der Hoff 2020-02-07 15:30:26 +00:00 committed by GitHub
parent 799001f2c0
commit e1d858984d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 25 deletions

1
changelog.d/6869.misc Normal file
View File

@ -0,0 +1 @@
Remove unused `get_room_stats_state` method.

View File

@ -271,31 +271,6 @@ class StatsStore(StateDeltasStore):
return slice_list
def get_room_stats_state(self, room_id):
"""
Returns the current room_stats_state for a room.
Args:
room_id (str): The ID of the room to return state for.
Returns (dict):
Dictionary containing these keys:
"name", "topic", "canonical_alias", "avatar", "join_rules",
"history_visibility"
"""
return self.db.simple_select_one(
"room_stats_state",
{"room_id": room_id},
retcols=(
"name",
"topic",
"canonical_alias",
"avatar",
"join_rules",
"history_visibility",
),
)
@cached()
def get_earliest_token_for_stats(self, stats_type, id):
"""