aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/videos
Commit message (Collapse)AuthorAgeFilesLines
* Cleanup utils helperChocobozzz2018-08-141-2/+3
|
* Improve blacklist managementChocobozzz2018-08-141-2/+2
|
* Add blacklist reason fieldChocobozzz2018-08-141-14/+42
|
* Add state and moderationComment for abuses on server sideChocobozzz2018-08-101-8/+54
|
* Add torrent testsChocobozzz2018-08-081-2/+4
|
* Add import.video.torrent configurationChocobozzz2018-08-081-3/+7
|
* Import torrents with webtorrentChocobozzz2018-08-081-12/+45
|
* Import magnets with webtorrentChocobozzz2018-08-081-37/+105
|
* Add tests regarding video importChocobozzz2018-08-061-4/+5
|
* Add import http enabled configurationChocobozzz2018-08-061-2/+2
|
* Add audit logs for video importChocobozzz2018-08-061-7/+4
|
* Remove ability to delete video importsChocobozzz2018-08-061-20/+1
| | | | Users should remove the linked video instead
* Add ability to remove a video importChocobozzz2018-08-061-2/+10
|
* Add ability to import video with youtube-dlChocobozzz2018-08-062-1/+153
|
* Add audit logs in various modulesAurélien Bertron2018-07-313-4/+28
| | | | | | | | | - Videos - Videos comments - Users - Videos channels - Videos abuses - Custom config
* Add videos list filtersChocobozzz2018-07-241-3/+9
|
* Begin advanced searchChocobozzz2018-07-241-23/+0
|
* Speed up populate database scriptChocobozzz2018-07-241-2/+0
|
* Handle .srt subtitlesChocobozzz2018-07-161-8/+2
|
* Implement captions/subtitlesChocobozzz2018-07-162-0/+102
|
* Handle higher FPS for high resolution (test)Chocobozzz2018-06-291-2/+5
|
* Filter by category (#720)PhieF2018-06-271-0/+1
| | | | | | | | | | * get videos with specific category (api) * update api doc with category * add url parameter to filter by category * fix lint issues
* Fix removing scheduled updateChocobozzz2018-06-181-1/+3
|
* Add ability for uploaders to schedule video updateChocobozzz2018-06-141-0/+20
|
* Refractor retry transaction functionChocobozzz2018-06-134-117/+56
|
* Add concept of video state, and add ability to wait transcoding beforeChocobozzz2018-06-121-27/+20
| | | | publishing a video
* Add ability to manually run transcoding jobChocobozzz2018-05-301-1/+2
|
* Fix video channel update with an admin accountChocobozzz2018-05-171-1/+1
|
* Fix updating video tags to empty fieldChocobozzz2018-05-161-2/+2
|
* Add ability to update a video channelChocobozzz2018-05-111-6/+19
|
* Update video channel routesChocobozzz2018-04-242-186/+8
|
* Add account viewChocobozzz2018-04-241-16/+3
|
* Add ability to choose what policy we have for NSFW videosChocobozzz2018-04-191-6/+32
| | | | There is a global instance setting and a per user setting
* Add ability to click on the account in watch pageChocobozzz2018-04-171-1/+1
|
* Add publishedAt field for video model.Julien Le Bras2018-03-301-1/+8
| | | | | | | | | | | | * New field added in the `video` table + migration script * `publishedAt` updated to NOW when privacy changes from private to public/unlisted (default = NOW) * Models updated to handle the new attribute * Client interface updated to use `publishedAt` instead of `createdAt` except in My Account > My Videos view
* Prevent brute force login attackChocobozzz2018-03-291-1/+1
|
* Fix views system behind a proxyChocobozzz2018-03-281-1/+1
|
* Try to refractor activities sendingChocobozzz2018-03-272-12/+4
| | | | There is still a need for work on this part though
* Fix error loggingChocobozzz2018-03-262-3/+3
|
* Add "local" videos in menuChocobozzz2018-03-131-1/+1
|
* Fix resolution for portrait videosChocobozzz2018-02-271-3/+3
|
* Avoids easy cheating on vidoe viewsChocobozzz2018-02-231-0/+10
|
* Implement support field in video and video channelChocobozzz2018-02-152-9/+16
|
* Fix concurrency issue on video uploadChocobozzz2018-02-141-0/+1
|
* Handle thumbnail updateChocobozzz2018-02-141-0/+3
|
* Add ability to set video thumbnail/previewChocobozzz2018-02-141-18/+71
|
* Move job queue to redisChocobozzz2018-01-251-11/+13
| | | | | | | We'll use it as cache in the future. /!\ You'll loose your old jobs (pending jobs too) so upgrade only when you don't have pending job anymore.
* Don't show videos of remote instance after unfollowChocobozzz2018-01-185-11/+11
|
* Set sort refractoringChocobozzz2018-01-184-10/+10
|
* A few updates for the watch video view (#181)Benjamin Bouvier2018-01-071-1/+0
| | | | | | | | * Fixes #156: Filter out the video being watched from the list of other videos of the same author; * Fixes #167: in the video view, hide the author's domain when it's from the current host; * Fixes #171: Allow undoing a like/dislike;