aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/videos/index.ts
Commit message (Collapse)AuthorAgeFilesLines
* 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-271-6/+2
| | | | There is still a need for work on this part though
* 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-151-0/+2
|
* 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-181-3/+3
|
* Set sort refractoringChocobozzz2018-01-181-3/+3
|
* Add ability to disable video commentsChocobozzz2018-01-031-2/+3
|
* Begin to add avatar to actorsChocobozzz2017-12-291-24/+3
|
* Propagate old comment on new followChocobozzz2017-12-281-32/+9
|
* Add comments controllerChocobozzz2017-12-221-0/+2
|
* Use RsaSignature2017Chocobozzz2017-12-191-2/+0
|
* Add dirty migration :/Chocobozzz2017-12-191-3/+7
|
* Begin moving video channel to actorChocobozzz2017-12-191-6/+7
|
* Move models to typescript-sequelizeChocobozzz2017-12-131-24/+29
|
* Finish admin designChocobozzz2017-12-081-4/+4
|
* Optimise transaction for video uploadChocobozzz2017-12-081-44/+43
|
* Design second video upload stepChocobozzz2017-12-081-12/+16
|
* Fix client searchChocobozzz2017-12-051-13/+9
|
* Better view counterChocobozzz2017-11-301-12/+16
|
* Refractor validatorsChocobozzz2017-11-271-4/+4
|
* Federate video viewsChocobozzz2017-11-271-11/+15
|
* Move activitypub functions from helpers/ to lib/Chocobozzz2017-11-271-2/+3
|
* Refractor activity pub lib/helpersChocobozzz2017-11-271-5/+6
|
* Fix public video we set to public or unlistedChocobozzz2017-11-271-0/+1
|
* Send server announce when users upload a videoChocobozzz2017-11-271-5/+6
|
* Rename Pod -> ServerChocobozzz2017-11-271-3/+3
|
* Make it compile at leastChocobozzz2017-11-271-59/+29
|
* Remove references to authorChocobozzz2017-11-271-1/+1
|
* Continue activitypubChocobozzz2017-11-271-14/+16
|
* Add video privacy settingChocobozzz2017-10-311-5/+23
|
* Add lazy description on serverChocobozzz2017-10-301-1/+20
|
* Fix lintChocobozzz2017-10-261-1/+1
|
* Use async/await in controllersChocobozzz2017-10-261-208/+146
|
* Add video channelsChocobozzz2017-10-261-27/+21
|
* Change how we handle resolutionChocobozzz2017-10-091-3/+9
| | | | It was an enum before, now we just use video height
* Implement video transcoding on server sideChocobozzz2017-10-031-5/+4
|
* Fix concurrency error when deleting a videoChocobozzz2017-09-121-11/+25
|
* Improve real world scriptChocobozzz2017-09-121-3/+8
|
* Upload a video to /videos/uploadChocobozzz2017-09-071-1/+1
| | | | This is an action, not a REST endpoint