aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/check-params
Commit message (Collapse)AuthorAgeFilesLines
...
| * Cleanup reset user password by adminChocobozzz2019-02-111-0/+18
| | | | | | | | And add some tests
| * Add hls support on serverChocobozzz2019-02-111-0/+3
| |
| * fix typo in test accounts api validatorsJosh Morel2019-01-281-1/+1
| |
| * Prepare Dislike/Flag/View fixesChocobozzz2019-01-151-0/+4
| | | | | | | | | | | | | | | | For now we Create these activities, but we should just send them directly. This fix handles correctly direct Dislikes/Flags/Views, we'll implement the sending correctly these activities in the next peertube version
| * Increase abuse length to 3000Chocobozzz2019-01-141-3/+3
| | | | | | | | And correctly handle new lines
| * Add ability to unfederate a local video (on blacklist)Chocobozzz2019-01-101-50/+68
| |
| * Implement contact form on server sideChocobozzz2019-01-103-1/+96
| |
| * Add notifications in the clientChocobozzz2019-01-092-12/+42
| |
| * Add new follow, mention and user registered notifsChocobozzz2019-01-091-1/+4
| |
| * Add import finished and video published notifsChocobozzz2019-01-091-1/+15
| |
| * Add user notification base codeChocobozzz2019-01-092-0/+250
| |
| * Add history on server sideChocobozzz2018-12-182-5/+73
| | | | | | | | 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
| * Support additional video extensionsChocobozzz2018-12-112-1/+7
| |
| * Merge branch 'move-utils-to-shared' of ↵Chocobozzz2018-12-0719-41/+110
| |\ | | | | | | | | | https://github.com/buoyantair/PeerTube into buoyantair-move-utils-to-shared
| | * Merge branch 'develop' of https://github.com/Chocobozzz/PeerTube into ↵buoyantair2018-11-181-0/+6
| | |\ | | | | | | | | | | | | move-utils-to-shared
| | * | Move utils to /sharedbuoyantair2018-10-2919-40/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | Do not host remote AP objectsChocobozzz2018-11-161-0/+5
| |/
| * Feature/description support fields length 1000 (#1267)BRAINS YUM2018-10-194-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
| * Add ability to mute a user/instance by server in server apiChocobozzz2018-10-161-2/+254
| |
| * Add user/instance block by users in the clientChocobozzz2018-10-161-0/+20
| |
| * Add ability for users to block an account/instance on server sideChocobozzz2018-10-162-0/+223
| |
| * Add ability to list all local videosChocobozzz2018-10-102-0/+128
| | | | | | | | Including private/unlisted for moderators/admins
* | Rename downloadingEnabled property to downloadEnabledLucas Declercq2018-10-082-3/+3
| |
* | Add downloadingEnabled property to video modelLucas Declercq2018-10-062-0/+3
|/
* Add user history and resume videosChocobozzz2018-10-052-0/+80
|
* Check video channel name is unique on our instanceChocobozzz2018-10-011-0/+10
|
* Check current password on server sideChocobozzz2018-09-261-1/+33
|
* Basic video redundancy implementationChocobozzz2018-09-133-12/+108
|
* add user account email verificiation (#977)Josh Morel2018-08-312-1/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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-282-3/+56
| | | | | | | | | | | | | | | | | | | | * 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
* Search video channel handle/uriChocobozzz2018-08-271-1/+26
|
* Add ability to search video channelsChocobozzz2018-08-271-0/+40
|
* Fix testsChocobozzz2018-08-271-2/+0
|
* Add ability to search a video with an URLChocobozzz2018-08-271-3/+3
|
* Add get subscription endpointChocobozzz2018-08-271-4/+55
|
* Add ability to set a name to a channelChocobozzz2018-08-272-40/+26
|
* Add subscriptions endpoints to REST APIChocobozzz2018-08-272-0/+221
|
* Increase video import timeoutChocobozzz2018-08-141-1/+1
|
* Add tests when getting a blacklisted videoChocobozzz2018-08-141-11/+48
|
* Add blacklist reason fieldChocobozzz2018-08-141-10/+82
|
* Add state and moderationComment for abuses on server sideChocobozzz2018-08-101-18/+97
|
* 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-082-2/+2
|
* Add check param tests regarding video importsChocobozzz2018-08-082-5/+89
|
* Add import.video.torrent configurationChocobozzz2018-08-081-0/+3
|