Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
Don't require alias in public room list. #664
Conversation
erikjohnston
assigned
NegativeMjark
Mar 23, 2016
oddvar
added
the
in progress
label
Mar 23, 2016
NegativeMjark
commented on an outdated diff
Mar 23, 2016
synapse/handlers/room.py
| - name_event = state.get((EventTypes.Name, ""), None) | ||
| + name_event = yield get_state(EventTypes.Name, "") |
NegativeMjark
Contributor
|
NegativeMjark
and 1 other
commented on an outdated diff
Mar 23, 2016
synapse/handlers/room.py
| - result = {"aliases": aliases, "room_id": room_id} | ||
| + result = {"room_id": room_id} | ||
| + if aliases: | ||
| + result["aliases"] = aliases |
NegativeMjark
Contributor
|
|
retest this please |
erikjohnston
added some commits
Mar 23, 2016
|
@NegativeMjark PTAL I'm afraid I added some SQL and a check for JoinRules = Public |
|
LGTM |
erikjohnston
merged commit fbdeb17
into
develop
Mar 23, 2016
8 checks passed
Flake8 + Packaging (Commit)
Build #199 origin/erikj/public_room_list succeeded in 28 sec
Details
Flake8 + Packaging (Merged PR)
Build finished.
Details
Sytest Postgres (Commit)
Build #202 origin/erikj/public_room_list succeeded in 5 min 18 sec
Details
Sytest Postgres (Merged PR)
Build finished.
Details
Sytest SQLite (Commit)
Build #203 origin/erikj/public_room_list succeeded in 4 min 39 sec
Details
Sytest SQLite (Merged PR)
Build finished.
Details
Unit Tests (Commit)
Build #244 origin/erikj/public_room_list succeeded in 1 min 15 sec
Details
Unit Tests (Merged PR)
Build finished.
Details
oddvar
removed
the
in progress
label
Mar 23, 2016
dbkr
referenced this pull request
in vector-im/riot-web
Mar 24, 2016
Closed
Room settings: need a warning when setting a room public without address #767
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
erikjohnston commentedMar 23, 2016
Rooms now no longer require an alias to be published.
Also, changes the way we pull out state of each room to not require fetching all state events.