aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/check-params/users.ts
Commit message (Collapse)AuthorAgeFilesLines
* emit more specific status codes on video upload (#3423)Rigel Kent2020-12-081-6/+6
| | | | | - reduce http status codes list to potentially useful codes - convert more codes to typed ones - factorize html generator for error responses
* replace numbers with typed http status codes (#3409)Rigel Kent2020-12-071-66/+144
|
* Fix migration and testChocobozzz2020-11-251-1/+31
|
* Add admin view to manage commentsChocobozzz2020-11-161-12/+0
|
* Don't rely on youtube for testsChocobozzz2020-07-311-7/+6
| | | | | Use another import URL when possible, and disable import tests when we want to do a youtube import test
* add check-params test for user listRigel Kent2020-07-031-0/+12
| | | | fixes #2918
* Update server dependenciesChocobozzz2020-06-171-7/+0
|
* preserve original variable names server-sideRigel Kent2020-06-101-1/+1
|
* rename blacklist to block/blocklist, merge block and auto-block viewsRigel Kent2020-06-101-1/+1
| | | | | | | | | | | - also replace whitelist with allowlist - add advanced filters for video-block-list view - move icons in video-block-list and video-abuse-list to left side for visibility - add robot icon to depict automated nature of a block in video-block-list resolves #2790
* Fix external auth email/password updateChocobozzz2020-05-201-1/+1
| | | | Also check if an actor does not already exist when creating the user
* Creating a user with an empty password will send an email to let him set his ↵John Livingston2020-02-171-1/+47
| | | | | | | | | | | | | | | | password (#2479) * Creating a user with an empty password will send an email to let him set his password * Consideration of Chocobozzz's comments * Tips for optional password * API documentation * Fix circular imports * Tests
* Move to eslintcontainChocobozzz2020-02-031-6/+7
|
* Autoplay next recommended video (#2137)LoveIsGrief2019-09-241-0/+8
| | | | | | | | | | | | | | | | | | | | | | * Start working on autoplay of next video * Ignore changes made by gitpod * Apply changes from PR#1370 * Correct the spelling of recommendations * Fix linting errors * Move boolean check to existing onEnded handler * Pick a random video until the recommendations are improved * Add simple tests for autoPlayNextVideo * Fix lint ...again
* fix a few typos (#2141)Lukas Winkler2019-09-231-1/+1
| | | | | | | | * fix a few typos * apply changes to original files instead * additional correction
* Add welcome modalChocobozzz2019-09-051-1/+19
|
* Moderators can only manage usersChocobozzz2019-07-301-30/+136
|
* Add CLI plugins testsChocobozzz2019-07-241-1/+12
|
* Add language filters in user preferencesChocobozzz2019-06-191-0/+23
|
* Add more embed parametersChocobozzz2019-06-111-2/+1
|
* Improve registrationChocobozzz2019-06-071-0/+7
| | | | | | | * Add ability to set the user display name * Use display name to guess the username/channel name * Add explanations about what is the purpose of a username/channel name * Add a loader at the "done" step
* Multi step registrationChocobozzz2019-05-291-0/+7
|
* Add ability to specify channel on registrationChocobozzz2019-05-281-2/+26
|
* Use test wrapper exit functionChocobozzz2019-04-241-4/+4
|
* Try to fix travisChocobozzz2019-04-241-3/+21
|
* Cleanup testsChocobozzz2019-04-241-11/+4
|
* Shared utils -> extra-utilsChocobozzz2019-04-241-4/+4
| | | | Because they need dev dependencies
* Add user adminFlagsChocobozzz2019-04-151-2/+22
|
* Add check params account ratings testsChocobozzz2019-04-091-0/+32
|
* Cleanup reset user password by adminChocobozzz2019-02-111-0/+18
| | | | And add some tests
* Add notifications in the clientChocobozzz2019-01-091-2/+1
|
* Add history on server sideChocobozzz2018-12-181-0/+8
| | | | Add ability to disable, clear and list user videos history
* Keep old channel/user name constraintsChocobozzz2018-12-131-2/+2
| | | | In order to avoid compatibility issues
* Merge branch 'move-utils-to-shared' of ↵Chocobozzz2018-12-071-4/+8
|\ | | | | | | https://github.com/buoyantair/PeerTube into buoyantair-move-utils-to-shared
| * Move utils to /sharedbuoyantair2018-10-291-4/+8
| | | | | | | | | | | | | | Move utils used by /server/tools/* & /server/tests/**/* into /shared folder. Issue: #1336
* | username/display_name/video_channel_name min length 1 and max length 50 (#1265)BRAINS YUM2018-12-071-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | * make username, display_name and video_channel_name min length 1 and max length 50; (fixes #1263); ! still some bug on the frontend complains but if you remove the disabled property it creates the account just fine; allow for usernames to start with a number; fix test, since username can be 1 char now make test check empty; fix test, Should fail with a too long username; fix test, Should fail with a too small username; fix regular expression for username and videoChannel; change username, videoChannel to be lowercase and fix message; * change 1 characters to 1 character
* | enable email verification by admin (#1348)Josh Morel2018-11-211-0/+9
|/ | | | | | | | | | | | | * enable email verification by admin * rename/label to set email as verified to be more explicit that admin is not sending another email to confirm * add update user emailVerified check-params test * make user.model emailVerified property required
* Feature/description support fields length 1000 (#1267)BRAINS YUM2018-10-191-1/+1
| | | | | | | | | | | | | | | | | | * fix migrations to not use config constant values as it can introduce bugs later when they change; (fixes #1259) remove constant fields imports from migrations * add migrations to update description and support fields to 1000 (fixes #1258) * fix client/server account and video_channel description/support fields to be max len 1000 (fixes #1258); fix test Should fail with a too long description; fix test Should fail with a long description; fix test Should fail with a long description; Remove USER.SUPPORT from constants since that field no longer exists; null not false, in migrations/0280-description-support.ts; video support field 1000, oops; * rename migration 0280-description-support.ts -> 0285-description-support.ts; update video support maxlength text
* Check current password on server sideChocobozzz2018-09-261-1/+33
|
* add user account email verificiation (#977)Josh Morel2018-08-311-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * add user account email verificiation includes server and client code to: * enable verificationRequired via custom config * send verification email with registration * ask for verification email * verify via email * prevent login if not verified and required * conditional client links to ask for new verification email * allow login for verified=null these are users created when verification not required should still be able to login when verification is enabled * refactor email verifcation pr * change naming from verified to emailVerified * change naming from askVerifyEmail to askSendVerifyEmail * undo unrelated automatic prettier formatting on api/config * use redirectService for home * remove redundant success notification on email verified * revert test.yaml smpt host
* Implement daily upload limit (#956)Felix Ableitner2018-08-281-2/+54
| | | | | | | | | | | | | | | | | | | | * Implement daily upload limit (ref #652) * remove duplicate code * review fixes * fix tests? * whitespace fixes, finish leftover todo * fix tests * added some new tests * use different config value for tests * remove todo
* Implement user blocking on server sideChocobozzz2018-08-081-2/+14
|
* Add ability to delete our accountChocobozzz2018-08-081-1/+7
|
* Increase test timeout for importsChocobozzz2018-08-081-1/+1
|
* Add torrent testsChocobozzz2018-08-081-1/+1
|
* Add check param tests regarding video importsChocobozzz2018-08-081-3/+41
|
* API: Add ability to update video channel avatarChocobozzz2018-06-291-0/+14
|
* Increase test timeout for travisChocobozzz2018-06-271-1/+1
|
* Do not create a user with the same username than another actor nameChocobozzz2018-06-211-0/+24
|
* Move fixtures in tests/Chocobozzz2018-06-071-3/+3
|
* Add ability to choose what policy we have for NSFW videosChocobozzz2018-04-191-3/+3
| | | | There is a global instance setting and a per user setting