summary refs log tree commit diff
path: root/src/util/entities/User.ts (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Port User.tag getter from pomelo as utilityRory&2026-01-231-1/+8
|
* DEPRECATION: Move most select queries to object instead of string[]Rory&2025-12-191-2/+2
|
* Drop extended_settings, account data soon. Closes #1160Rory&2025-12-171-5/+0
|
* Merge remote-tracking branch 'DEVTomatoCake/fix/getPublicUser-no-defaults'Rory&2025-12-171-6/+4
|\
| * Run ESLintTomatoCake2024-09-011-8/+1
| |
| * Stop returning defaults when using getPublicUser()TomatoCake2024-09-011-6/+4
| |
* | lintstagedrc: regenerate schemas/openapi if schemas changedRory&2025-12-171-276/+276
| |
* | Maybe?>Rory&2025-12-131-7/+6
| |
* | Fix missing group by?Rory&2025-12-131-0/+2
| |
* | Fix typo in getDmChannels helperRory&2025-12-131-1/+1
| |
* | More instance ban stuffRory&2025-12-121-0/+13
| |
* | get rid of singleMathMan052025-11-251-2/+2
| |
* | add extraFields optional param on toPrivateUser, expose rights on READYRory&2025-11-221-2/+2
| |
* | prevent bots from joining guild with configMathMan052025-11-171-1/+10
| |
* | Local changesRory&2025-10-161-3/+3
| |
* | More schema work, moved most stuff from entities to schemas, though messyRory&2025-10-151-75/+3
| |
* | Return defaults for missing {proto-,}settingsRory&2025-10-111-2/+2
| |
* | Try to fix duplicate user settingsRory&2025-10-111-1/+1
| |
* | Add dotnet-ish Random classRory&2025-10-041-2/+2
| |
* | Remove mariadb support as it isnt maintained and hasnt worked in over a yearRory&2025-09-301-2/+0
| |
* | Clean up unused importsRory&2025-09-301-1/+1
| |
* | Implement fetching DM messages by user IDRory&2025-09-291-62/+43
| |
* | Fix typoRory&2025-09-291-1/+1
|/
* "engine" const value sharedTomatoCake2024-08-181-1/+2
|
* Run prettier for @Entity()TomatoCake2024-08-171-1/+4
|
* Add utf8mb4 "engine" property to all entitysTomatoCake2024-08-171-1/+1
|
* Make profile bio max length configurableTomatoCake2024-08-101-4/+4
|
* feat: badgesCyber2024-07-171-0/+4
|
* Refactor email sending + remove email verification if mail sending is not set upMadeline2023-08-121-20/+1
|
* * call toJSON of keys in gateway when using erlpackMadeline2023-07-291-1/+1
| | | | | | * dont send bitrate/etc as null when should be undefined * set user flags to number instead of string * send empty 'threads' in identify when not using new state v2
* Merge branch 'master' into feat/refactorIdentifyMadeline2023-07-281-9/+15
|\
| * move guild/user prop initialisations into create/register methodsMadeline2023-04-141-5/+10
| |
| * fix some types not being generated correctlyPuyodead12023-04-131-2/+4
| |
| * oapi: users progressPuyodead12023-04-131-2/+1
| |
* | Merge branch 'master' into feat/refactorIdentifyMadeline2023-04-011-3/+3
|\|
| * Revert "Merge pull request #1008 from spacebarchat/dev/samuel"Madeline2023-03-311-2/+2
| | | | | | | | | | This reverts commit 69ea71aa9e0bd2e5a98904a66fba0ad3745707cb, reversing changes made to 8b2faf0b18336e5dff1eeff4e849bcfd96b09e88.
| * Merge pull request #1008 from spacebarchat/dev/samuelSamuel (Flam3rboy)2023-03-301-2/+2
| |\
| | * feat: Database Query CacheSamuel2023-03-181-2/+2
| | |
| * | SPACEBARMadeline2023-03-311-1/+1
| | |
| * | SPACEBARMadeline2023-03-311-1/+1
| | |
| * | Work towards fixing openapi specMadeline2023-03-241-1/+1
| |/
* / Initial identify rewriteMadeline2023-03-131-0/+9
|/
* implement password resetPuyodead12023-02-241-1/+1
|
* don't print anything if email send is successfulPuyodead12023-02-241-19/+15
|
* fix linting errorsPuyodead12023-02-231-1/+8
|
* Fix template rendering and use verify email templatePuyodead12023-02-231-1/+1
| | | | email html is weird, some stuff isn't supported.
* Email verification worksPuyodead12023-02-231-17/+6
| | | | | | | | - 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
* send email verificationPuyodead12023-02-231-1/+25
|
* Merge pull request from GHSA-hqqp-gpqw-9w5cMadeline2023-02-021-15/+8
|
* Implement WebAuthn (#967)Puyodead12023-01-301-0/+7
| | | | | | | | | * implement webauthn * code review --------- Co-authored-by: Madeline <46743919+MaddyUnderStars@users.noreply.github.com>
* Add ESLint (#941)Madeline2023-01-201-8/+11
| | | | | | | * 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-0/+18
| | | | | | | | | * 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
* Fix setting user premium_type/etc (non-nullable) to null in db when null in ↵Madeline2023-01-131-3/+3
| | | | config
* fix rights lolMadeline2023-01-111-1/+2
|
* If defaults_user_premium is false, don't give a user `premium_since: new Date`Madeline2023-01-111-9/+8
|
* PrettierMadeline2023-01-051-19/+12
|
* Profile themes and pronounsMadeline2022-12-311-1/+10
|
* Fix creating bot accountsMadeline2022-12-241-4/+12
|
* Move UserSettings to own entityTheArcaneBrony2022-12-191-134/+39
|
* Add additional configMadeline2022-12-191-1/+1
|
* Add basic developer panel functionality - doesn't work yetChrisChrome2022-12-181-3/+1
| | | | | | > > > Co-authored-by: TheArcaneBrony <myrainbowdash949@gmail.com>
* user validation stuffMadeline2022-12-171-11/+4
|
* Remove bad banned words implementationMadeline2022-12-171-7/+0
|
* various typosMadeline2022-10-281-1/+1
|
* Fix user settings not saving properly and guild foldersMadeline2022-10-281-3/+3
|
* fix bad user validationMadeline2022-10-271-8/+9
|
* Fix typo in user validationMadeline2022-10-261-3/+3
|
* Fix user validator preventing updateMadeline2022-09-271-40/+51
|
* PrettierMadeline2022-09-261-29/+93
|
* Refactor to mono-repo + upgrade packagesMadeline2022-09-251-0/+430