mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-11-16 12:00:51 +01:00
Update readme
This commit is contained in:
parent
fd1aea7e36
commit
c769283953
2 changed files with 8 additions and 6 deletions
12
README.md
12
README.md
|
@ -20,17 +20,19 @@ A fast Matrix homeserver that's optimized for smaller, personal servers, instead
|
||||||
- [x] Create room messages
|
- [x] Create room messages
|
||||||
- [x] Sync room messages
|
- [x] Sync room messages
|
||||||
- [x] Join rooms, lookup room ids
|
- [x] Join rooms, lookup room ids
|
||||||
- [x] Basic Riot web support
|
- [x] Riot web support
|
||||||
- [x] Riot room discovery
|
- [x] Room discovery
|
||||||
- [x] Riot read receipts
|
- [x] Read receipts
|
||||||
- [x] Typing indications
|
- [x] Typing indications
|
||||||
- [x] Invites, user search
|
- [x] Invites, user search
|
||||||
- [x] Password hashing
|
- [x] Password hashing
|
||||||
|
- [ ] Basic federation
|
||||||
|
- [ ] State resolution
|
||||||
|
- [ ] Permission system
|
||||||
|
- [ ] Notifications (push rules)
|
||||||
- [ ] Riot presence
|
- [ ] Riot presence
|
||||||
- [ ] Proper room creation
|
- [ ] Proper room creation
|
||||||
- [ ] Riot E2EE
|
- [ ] Riot E2EE
|
||||||
- [ ] Basic federation
|
|
||||||
- [ ] State resolution
|
|
||||||
|
|
||||||
#### How can I contribute?
|
#### How can I contribute?
|
||||||
|
|
||||||
|
|
|
@ -1058,7 +1058,7 @@ pub fn publicised_groups_route() -> MatrixResult<create_message_event::Response>
|
||||||
}
|
}
|
||||||
|
|
||||||
#[options("/<_segments..>")]
|
#[options("/<_segments..>")]
|
||||||
pub fn options_route(_segments: PathBuf) -> MatrixResult<create_message_event::Response> {
|
pub fn options_route(_segments: rocket::http::uri::Segments) -> MatrixResult<create_message_event::Response> {
|
||||||
MatrixResult(Err(Error {
|
MatrixResult(Err(Error {
|
||||||
kind: ErrorKind::NotFound,
|
kind: ErrorKind::NotFound,
|
||||||
message: "This is the options route.".to_owned(),
|
message: "This is the options route.".to_owned(),
|
||||||
|
|
Loading…
Reference in a new issue