]> Untitled Git - lemmy.git/commit
Move websocket structs into lemmy_structs (ref #1115)
authorFelix Ableitner <me@nutomic.com>
Wed, 16 Sep 2020 10:25:22 +0000 (12:25 +0200)
committerFelix Ableitner <me@nutomic.com>
Wed, 16 Sep 2020 11:45:31 +0000 (13:45 +0200)
commit98c086abb9d5777381cf2426a36b92321440dc43
tree36f90cf25c30da8d80eaed8e176606bb13538dc3
parent5c6258390c46159c16f49295314c6519215fc6ae
Move websocket structs into lemmy_structs (ref #1115)
44 files changed:
Cargo.lock
Cargo.toml
docker/dev/Dockerfile
docker/prod/Dockerfile
lemmy_structs/Cargo.toml [moved from lemmy_api_structs/Cargo.toml with 69% similarity]
lemmy_structs/src/comment.rs [moved from lemmy_api_structs/src/comment.rs with 100% similarity]
lemmy_structs/src/community.rs [moved from lemmy_api_structs/src/community.rs with 100% similarity]
lemmy_structs/src/lib.rs [moved from lemmy_api_structs/src/lib.rs with 97% similarity]
lemmy_structs/src/post.rs [moved from lemmy_api_structs/src/post.rs with 100% similarity]
lemmy_structs/src/site.rs [moved from lemmy_api_structs/src/site.rs with 100% similarity]
lemmy_structs/src/user.rs [moved from lemmy_api_structs/src/user.rs with 100% similarity]
lemmy_structs/src/websocket.rs [moved from src/websocket/messages.rs with 70% similarity]
src/api/comment.rs
src/api/community.rs
src/api/mod.rs
src/api/post.rs
src/api/site.rs
src/api/user.rs
src/apub/comment.rs
src/apub/community.rs
src/apub/fetcher.rs
src/apub/inbox/activities/create.rs
src/apub/inbox/activities/delete.rs
src/apub/inbox/activities/dislike.rs
src/apub/inbox/activities/like.rs
src/apub/inbox/activities/remove.rs
src/apub/inbox/activities/undo.rs
src/apub/inbox/activities/update.rs
src/apub/inbox/community_inbox.rs
src/apub/inbox/user_inbox.rs
src/apub/mod.rs
src/apub/post.rs
src/apub/private_message.rs
src/apub/user.rs
src/lib.rs
src/main.rs
src/routes/api.rs
src/routes/feeds.rs
src/routes/nodeinfo.rs
src/routes/webfinger.rs
src/routes/websocket.rs
src/websocket/chat_server.rs
src/websocket/handlers.rs
src/websocket/mod.rs