aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/check-params
Commit message (Collapse)AuthorAgeFilesLines
* Add ability to update some configuration keysChocobozzz2018-01-171-0/+152
|
* Add ability to delete commentsChocobozzz2018-01-041-2/+37
|
* Send account activitypub update eventsChocobozzz2018-01-032-0/+52
|
* Add avatar max size limitChocobozzz2018-01-031-0/+8
|
* Add ability to disable video commentsChocobozzz2018-01-033-8/+65
|
* Begin to add avatar to actorsChocobozzz2017-12-291-1/+21
|
* Improve check videos parameters testsChocobozzz2017-12-287-545/+296
|
* Improve check users parameters testsChocobozzz2017-12-282-307/+117
|
* Improve check services parameters testsChocobozzz2017-12-281-87/+36
|
* Improve check jobs parameters testsChocobozzz2017-12-281-27/+16
|
* Improve check follow params testsChocobozzz2017-12-287-120/+106
|
* Tests directories refractorChocobozzz2017-12-282-2/+2
|
* Add comments federation testsChocobozzz2017-12-272-20/+6
|
* Add check params testsChocobozzz2017-12-272-2/+216
|
* Begin moving video channel to actorChocobozzz2017-12-191-17/+1
|
* Enh #106 : Add an autoPlayVideo user attribute (#159)Andréas Livet2017-12-191-0/+9
| | | | | | | | | Warning : I was not able to run the tests on my machine. It uses a different approach to handle databse connexion and didn't find where to configure it... - create a migration file to add a boolean column in user table - add autoPlayVideo attribute everywhere it is needed (both on client and server side) - add tests - add a way to configure this attribute in account-settings - use the attribute in video-watch component to actually autoplay or not the video
* Fix testChocobozzz2017-12-081-3/+3
|
* Make some fields optional when uploading a videoChocobozzz2017-12-071-24/+0
|
* Add ability to list jobsChocobozzz2017-11-302-0/+85
|
* Users list only available when use is authenticatedChocobozzz2017-11-291-1/+19
| | | | And has a special right
* Remove max duration/filesize constraintsChocobozzz2017-11-281-8/+0
|
* Add follow testsChocobozzz2017-11-271-41/+43
|
* Fix lintChocobozzz2017-11-271-7/+6
|
* Optimize signature verificationChocobozzz2017-11-276-411/+225
|
* Improve client mobile versionChocobozzz2017-11-061-5/+0
|
* Usernames are case insensitive nowChocobozzz2017-11-041-0/+12
|
* Upgrade server packagesChocobozzz2017-10-311-1/+1
|
* Add tests and fix bugs for video privacyChocobozzz2017-10-311-360/+177
|
* Lazy description and previews to video formChocobozzz2017-10-301-6/+2
|
* Add tests to user rolesChocobozzz2017-10-271-13/+59
|
* Increase video attributes lengthChocobozzz2017-10-262-6/+16
| | | | | | | Number of tags: 3 -> 5 Tag length: 10 -> 30 Video name: 50 -> 120 Video channel name: 50 -> 120
* Fix lintChocobozzz2017-10-261-1/+0
|
* Add video channel testsChocobozzz2017-10-263-19/+416
|
* Add pod list endpoint with pagination, sort...Chocobozzz2017-10-191-2/+30
|
* Add oembed endpointChocobozzz2017-10-162-0/+160
|
* Video blacklist refractoringChocobozzz2017-10-101-6/+6
|
* Handle blacklist (#84)Green-Star2017-09-225-93/+198
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Client: Add list blacklist feature * Server: Add list blacklist feature * Client: Add videoId column * Server: Add some video infos in the REST api * Client: Add video information in the blacklist list * Fix sortable columns :) * Client: Add removeFromBlacklist feature * Server: Add removeFromBlacklist feature * Move to TypeScript * Move to TypeScript and Promises * Server: Fix blacklist list sort * Server: Fetch videos informations * Use common shared interface for client and server * Add check-params remove blacklisted video tests * Add check-params list blacklisted videos tests * Add list blacklist tests * Add remove from blacklist tests * Add video blacklist management tests * Fix rebase onto develop issues * Server: Add sort on blacklist id column * Server: Add blacklists library * Add blacklist id sort test * Add check-params tests for blacklist list pagination, count and sort * Fix coding style * Increase Remote API tests timeout * Increase Request scheduler API tests timeout * Fix typo * Increase video transcoding API tests timeout * Move tests to Typescript * Use lodash orderBy method * Fix typos * Client: Remove optional tests in blacklist model attributes * Move blacklist routes from 'blacklists' to 'blacklist' * CLient: Remove blacklist-list.component.scss * Rename 'blacklists' files to 'blacklist' * Use only BlacklistedVideo interface * Server: Use getFormattedObjects method in listBlacklist method * Client: Use new coding style * Server: Use new sort validator methods * Server: Use new checkParams methods * Client: Fix sortable columns
* Upload a video to /videos/uploadChocobozzz2017-09-071-21/+42
| | | | This is an action, not a REST endpoint
* urls: makefriends/quitfriends -> make-friends/quit-friendsChocobozzz2017-09-071-10/+10
|
* Fix tests and user quotaChocobozzz2017-09-061-24/+135
|
* Convert tests to typescriptChocobozzz2017-09-0416-1973/+1799
|
* Remove one pod (#76)Green-Star2017-08-021-4/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Client: Fix typo * Client: Add removeFriend feature * Server: Add removeFriend feature * Server: Update method name * Fix rebase onto develop issues * Server: Fix error message * Server: Remove useless methods in removeFriend method * Server: Finish remove on pod feature after rebase * Server: Type pod parameter * Fix Travis build * Add friend-basic test for the remove one pod feature * Add check-params tests for the remove one pod feature * Fix typos * Add friend-advanced test for the remove one pod feature * Client: Trailing new line * Move to promises * Add undefined id test * Use find method instead of a for loop to find the friend to remove * Remove setTimeout method * Server: Remove requestScheduler operations * Server: Fix logging messages * Server: Remove sign request parameter
* Add ability to limit user registrationsChocobozzz2017-07-251-1/+7
|
* Use global uuid instead of remoteId for videosChocobozzz2017-07-111-1/+1
|
* Fix test (#71)Green-Star2017-07-023-3/+4
| | | | | | | | | | | | * Fix timeouting tests * Increase timeout to be sure requests will be propagated * Add timeout to be sure video views will be updated * Use standard style * Fix PR comments.
* Requests -> RequestSchedulersChocobozzz2017-06-252-3/+3
|
* Update client modulesChocobozzz2017-06-111-0/+2
|
* Server: add tests for video blacklistsChocobozzz2017-05-013-4/+128
|
* Server: fix testsChocobozzz2017-04-091-0/+1
|
* Server: add ability to register new userChocobozzz2017-04-091-2/+125
|