]> Untitled Git - lemmy.git/commit
Adding post editing.
authorDessalines <tyhou13@gmx.com>
Wed, 3 Apr 2019 20:59:37 +0000 (13:59 -0700)
committerDessalines <tyhou13@gmx.com>
Wed, 3 Apr 2019 20:59:37 +0000 (13:59 -0700)
commite690d6c470c6330b31e39448fe9e566a30860b14
tree37f7bf5629f1a5fd01442df2bd3a35c705b40f54
parentc7864643812645ecfb560154bcb1e758555126de
Adding post editing.

- Adding post editing. Fixes #23
- Making SQL versions of comment and post fetching. Fixes #21
- Starting to add forum categories. #17
25 files changed:
README.md
server/migrations/2019-02-27-170003_create_community/down.sql
server/migrations/2019-02-27-170003_create_community/up.sql
server/migrations/2019-03-30-212058_create_post_view/down.sql [moved from server/migrations/2019-03-30-212058_post_view/down.sql with 100% similarity]
server/migrations/2019-03-30-212058_create_post_view/up.sql [moved from server/migrations/2019-03-30-212058_post_view/up.sql with 91% similarity]
server/migrations/2019-04-03-155205_create_community_view/down.sql [new file with mode: 0644]
server/migrations/2019-04-03-155205_create_community_view/up.sql [new file with mode: 0644]
server/migrations/2019-04-03-155309_create_comment_view/down.sql [new file with mode: 0644]
server/migrations/2019-04-03-155309_create_comment_view/up.sql [new file with mode: 0644]
server/src/actions/comment.rs
server/src/actions/comment_view.rs [new file with mode: 0644]
server/src/actions/community.rs
server/src/actions/mod.rs
server/src/actions/post.rs
server/src/actions/post_view.rs
server/src/apub.rs
server/src/schema.rs
server/src/websocket_server/server.rs
ui/src/components/create-post.tsx
ui/src/components/post-form.tsx [new file with mode: 0644]
ui/src/components/post-listing.tsx
ui/src/components/post.tsx
ui/src/interfaces.ts
ui/src/services/UserService.ts
ui/src/services/WebSocketService.ts