Commits on Source (68)
-
insert authored
-
insert authored8627f27a
-
insert authoredf32f4472
-
insert authored
Notifications: Subscribe to guild channels.
1713ad05 -
insert authored
-
insert authored
-
insert authored
-
insert authoreddbd70aba
-
insert authored380369e1
-
insert authored
API: Allow removal of description on channels and servers.
0af4fa4b -
insert authored
Permissions: Use bit representation for permissions.
1f1d9613 -
insert authored782bfb7e
-
insert authored
ban list.
4e90cf1f -
insert authored
Prevent removal of self / owner.
fce92382 -
insert authoredc763a292
-
insert authored
-
insert authored
Permissions: Small fix, consider self as User.
-
insert authored
API: Return members when fetching messages. Misc: Remove defunct DISABLE_REGISTRATION variable.
0f18a678 -
insert authored78c890aa
-
insert authored03fa923e
-
insert authored
-
insert authored
Was conflicting with invite-only rauth registrations.
-
insert authored
Fix: Don't serialize None on Metadata. (january embed)
-
insert authored
-
insert authoredc4b39c56
-
insert authored9a2ccecb
-
insert authored6d67b3f7
-
insert authoredbad90245
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
Messaging: Allow multiple attachment upload.
-
insert authored
Servers: Add VoiceChannel.
-
insert authored
-
insert authored
Web Push: Send events if mentioned
-
insert authored
Feature: Roles and group permissions. (server-side)
-
insert authored
-
insert authored
-
insert authored
-
insert authored
Server: Add role create / delete route.
-
insert authored
Members: Assign / un-assign multiple roles. Servers: Routes to set permissions.
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
Add badge ID.
-
insert authored
-
insert authored
Add Edit Role route.
-
insert authored
-
insert authored
-
insert authored
Fix category edit.
-
Jan 0660 authoredca04f4d5
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
-
insert authored
Fix: Deleting a server now correctly deletes all associated objects.
-
insert authored
-
insert authored
SpamAssassin is a bitch.
-
insert authored
Include own memberships in Ready payload.
-
insert authored
Showing
- Cargo.lock 13 additions, 3 deletionsCargo.lock
- Cargo.toml 2 additions, 1 deletionCargo.toml
- LICENSE 661 additions, 0 deletionsLICENSE
- assets/templates/reset.html 45 additions, 44 deletionsassets/templates/reset.html
- assets/templates/reset_plain.html 14 additions, 0 deletionsassets/templates/reset_plain.html
- assets/templates/verify.html 45 additions, 44 deletionsassets/templates/verify.html
- assets/templates/verify_plain.html 15 additions, 0 deletionsassets/templates/verify_plain.html
- publish.sh 4 additions, 2 deletionspublish.sh
- set_version.sh 1 addition, 1 deletionset_version.sh
- src/database/entities/channel.rs 157 additions, 23 deletionssrc/database/entities/channel.rs
- src/database/entities/invites.rs 96 additions, 0 deletionssrc/database/entities/invites.rs
- src/database/entities/message.rs 152 additions, 49 deletionssrc/database/entities/message.rs
- src/database/entities/microservice/january.rs 11 additions, 1 deletionsrc/database/entities/microservice/january.rs
- src/database/entities/mod.rs 2 additions, 0 deletionssrc/database/entities/mod.rs
- src/database/entities/server.rs 306 additions, 31 deletionssrc/database/entities/server.rs
- src/database/entities/sync.rs 16 additions, 0 deletionssrc/database/entities/sync.rs
- src/database/entities/user.rs 54 additions, 8 deletionssrc/database/entities/user.rs
- src/database/guards/reference.rs 61 additions, 4 deletionssrc/database/guards/reference.rs
- src/database/migrations/init.rs 23 additions, 6 deletionssrc/database/migrations/init.rs
- src/database/migrations/scripts.rs 54 additions, 8 deletionssrc/database/migrations/scripts.rs
... | ... | @@ -16,6 +16,7 @@ log = "0.4.11" |
ulid = "0.4.1" | ||
rand = "0.7.3" | ||
time = "0.2.16" | ||
nanoid = "0.4.0" | ||
base64 = "0.13.0" | ||
linkify = "0.6.0" | ||
dotenv = "0.15.0" | ||
... | ... | @@ -41,7 +42,7 @@ async-std = { version = "1.8.0", features = ["tokio02", "attributes"] } |
async-tungstenite = { version = "0.10.0", features = ["async-std-runtime"] } | ||
rocket_cors = { git = "https://github.com/insertish/rocket_cors", branch = "master" } | ||
mongodb = { version = "1.1.1", features = ["tokio-runtime"], default-features = false } | ||
rauth = { git = "https://gitlab.insrt.uk/insert/rauth", rev = "1db825a0059639144ea8802f6d51b5d27c5b986e" } | ||
rauth = { git = "https://gitlab.insrt.uk/insert/rauth", rev = "00d3c3dff51cf3242a7d4adda4c5184c97fa2a03" } | ||
rocket_contrib = { git = "https://github.com/SergioBenitez/Rocket", rev = "031948c1daaa146128d8a435be116476f2adde00" } | ||
rocket_prometheus = { git = "https://github.com/insertish/rocket_prometheus", rev = "3d825aedb42793246c306a81fe67c5b187948983" } | ||
rocket = { git = "https://github.com/SergioBenitez/Rocket", rev = "031948c1daaa146128d8a435be116476f2adde00", default-features = false } |
LICENSE
0 → 100644
This diff is collapsed.
assets/templates/reset_plain.html
0 → 100644
assets/templates/verify_plain.html
0 → 100644
src/database/entities/invites.rs
0 → 100644