summary refs log tree commit diff
path: root/src/api/middlewares/Authentication.ts (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove authentication import from ratelimitRory&2026-07-211-46/+1
|
* Move authentication enforcement to route middleware, move route middleware fileRory&2026-07-211-32/+14
|
* Authentication: allow - in webhook tokenRory&2026-06-161-1/+1
|
* Fix importRory&2026-06-161-2/+6
|
* Move entities to databaseRory&2026-06-121-1/+2
|
* Use subpath imports for lambert-server, fix openapi.jsRory&2026-06-121-1/+1
|
* properly mark unused paramsRory&2026-03-141-1/+1
|
* ShieldsRory&2025-12-211-0/+1
|
* Send HTTP 401 on token errorsRory&2025-12-191-0/+3
|
* Avoid re-fetching user if not requesting extra fieldsRory&2025-12-181-3/+8
|
* lintstagedrc: regenerate schemas/openapi if schemas changedRory&2025-12-171-91/+91
|
* Centralise ip info logicRory&2025-12-171-1/+1
|
* Remove device on logoutRory&2025-12-171-2/+2
|
* Try adjusting CORS rules to make cookies work?Rory&2025-12-131-1/+1
|
* Instance ban stuffRory&2025-12-131-1/+15
|
* add fingerprint endpointdoesnm2025-10-201-0/+1
|
* fix: interaction callbackCyberL12025-10-191-1/+1
|
* fix: comment out the route for interactions callbackCyberL12025-10-181-1/+1
|
* feat: interactions (incomplete)CyberL12025-10-171-7/+3
|
* Drop @sentry/node (Sentry support) - untested and unusedRory&2025-09-291-3/+0
|
* fix an issue with NO_AUTHENTICATE routesPuyodead12025-09-051-6/+17
|
* Fixed errors in authorization for webhooks with tokensroot2025-03-231-1/+1
|
* turn off eslint rules causing issuesdank0742024-11-131-1/+0
|
* Enforce RegEx no auth routes startTomatoCake2024-08-301-4/+4
|
* Fix HEAD requests for no authorization routesTomatoCake2024-08-301-4/+10
|
* Run prettierTomatoCake2024-08-251-1/+1
|
* Remove auth requirement & fix image pathTomatoCake2024-08-251-0/+2
|
* Run prettierTomatoCake2024-08-241-1/+2
|
* Add method to NO_AUTHORIZATION_ROUTESTomatoCake2024-08-241-28/+27
|
* Start implementing webhooksPuyodead12023-12-101-2/+2
|
* Fix some linting warningsPuyodead12023-08-061-1/+1
|
* refactor checkTokenMadeline2023-07-281-6/+1
|
* Merge branch 'master' into refactor/dev/connectionsMadeline2023-04-021-3/+3
|\
| * Remove ALL fosscord mentionsMadeline2023-03-311-1/+1
| |
| * Revert "Merge pull request #1008 from spacebarchat/dev/samuel"Madeline2023-03-311-13/+4
| | | | | | | | | | This reverts commit 69ea71aa9e0bd2e5a98904a66fba0ad3745707cb, reversing changes made to 8b2faf0b18336e5dff1eeff4e849bcfd96b09e88.
| * Merge pull request #1008 from spacebarchat/dev/samuelSamuel (Flam3rboy)2023-03-301-4/+13
| |\
| | * perf: cache jwt secret as keySamuel2023-03-171-4/+13
| | |
| * | SPACEBARMadeline2023-03-311-1/+1
| | |
| * | SPACEBARMadeline2023-03-311-1/+1
| |/
* | prettierPuyodead12023-03-181-1/+1
| |
* | add connectionsPuyodead12023-03-181-0/+2
|/
* implement password resetPuyodead12023-02-241-0/+2
|
* Email verification worksPuyodead12023-02-231-2/+3
| | | | | | | | - Added /auth/verify to authenticated route whitelist - Updated /auth/verify to properly mark a user as verified, return a response, and fix expiration time check - Implemented /auth/verify/resend - Moved verification email sending to a helper method - Fixed VerifyEmailSchema requiring captcha_key
* Implement WebAuthn (#967)Puyodead12023-01-301-0/+1
| | | | | | | | | * implement webauthn * code review --------- Co-authored-by: Madeline <46743919+MaddyUnderStars@users.noreply.github.com>
* Add ESLint (#941)Madeline2023-01-201-4/+6
| | | | | | | * Add eslint, switch to lint-staged for precommit * Fix all ESLint errors * Update GH workflow to check prettier and eslint
* Script to add license preamble to each file. Also, does that. (#935)Madeline2023-01-181-1/+19
| | | | | | | | | * Add script to automatically add license to each file * Add license preamble to each file. * Fix existing preamble detection breaking due to line endings. Git :( * Prevent license from being added to code with other licenses
* Dev/post refactor fixes (#927)TheArcaneBrony2023-01-121-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Re-introduce outgoing message logging Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com> * Websocket dumping * Sentry user count on API * Generate session ID upon opening websocket, fix gateway dumps * Async file io in src/gateway/events/Message.ts Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com> * Async file io in src/util/util/Config.ts Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com> * Make pre-commit hook executable Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com> * Fixed sync file io in src/util/util/Config.ts Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com> * Fixed missing await call in src/util/util/AutoUpdate.ts Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com> * Add comment to src/gateway/events/Connection.ts Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com> * Clean up gateway dumping code Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com> Co-authored-by: Madeline <46743919+MaddyUnderStars@users.noreply.github.com>
* Move src-slowcord to own repo ↵Madeline2022-10-281-0/+2
| | | | https://github.com/MaddyUnderStars/slowcord-services
* Change android and ios client downloads to use /download endpoint, update ↵Madeline2022-10-241-1/+1
| | | | Release entity to suck less
* PrettierMadeline2022-09-261-5/+13
|
* Refactor to mono-repo + upgrade packagesMadeline2022-09-251-0/+72