-
Notifications
You must be signed in to change notification settings - Fork 384
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
51ebe01
commit c8f3ece
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# MSCXXXX: User Pronouns | ||
|
||
Many users of Matrix put pronouns in display names. However, that causes screen clutter. This proposal defines a standardized pronouns field on top of MSC4133. | ||
|
||
## Proposal | ||
|
||
Profiles may have optional `m.pronouns` and `m.pronouns.secondary` fields as a string. These fields can be fetched through the [profile API endpoints](https://spec.matrix.org/unstable/client-server-api/#profiles). | ||
|
||
### Example | ||
|
||
```json | ||
{ | ||
"avatar_url": "…", | ||
"displayname": "…", | ||
"m.pronouns": "it/its", | ||
"m.pronouns.secondary": "she/her" | ||
} | ||
``` | ||
|
||
## Potential issues | ||
|
||
Some users may not want to publish pronouns to others, although that is out of scope for this MSC. Some users may also complain about "woke", although pronouns are a basic part of langauge. | ||
|
||
## Security issues | ||
|
||
None. | ||
|
||
## Unstable prefix | ||
|
||
Clients and servers wishing to implement this early may use `io.fsky.nyx.pronouns` and `io.fsky.nyx.pronouns.secondary`. |