aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix global search nsfw policy when logged inChocobozzz2020-06-151-1/+5
|
* Use default nsfw instance policy for search indexChocobozzz2020-06-121-1/+8
|
* Add search index testsChocobozzz2020-06-102-4/+4
|
* First implem global searchChocobozzz2020-06-102-8/+115
|
* Don't cache embed HTML fileChocobozzz2020-06-021-1/+2
|
* Block comments from muted accounts/serversChocobozzz2020-05-292-1/+3
| | | | | | | | | | | | Add better control for users of comments displayed on their videos: * Do not forward comments from muted remote accounts/servers (muted by the current server or by the video owner) * Do not list threads and hide replies (with their children) of accounts/servers muted by the video owner * Hide from RSS comments of muted accounts/servers by video owners Use case: * Try to limit spam propagation in the federation * Add ability for users to automatically hide comments on their videos from undesirable accounts/servers (the comment section belongs to videomakers, so they choose what's posted there)
* Support broadcast messagesChocobozzz2020-05-291-0/+13
|
* Fix comments deleted displayChocobozzz2020-05-291-1/+1
|
* Add ability to bulk delete commentsChocobozzz2020-05-293-35/+61
|
* Add missing channel playlists AP endpointChocobozzz2020-05-131-4/+16
|
* Align follower handle display on instance display in tablesRigel Kent2020-05-081-1/+1
|
* Switch emails to pug templates and provide richer html/text-only versionsRigel Kent2020-05-081-6/+14
|
* Add moderation helpers to pluginsChocobozzz2020-05-075-54/+14
|
* Add last login date to usersChocobozzz2020-05-071-1/+7
|
* Use video abuse filters on client sideChocobozzz2020-05-071-1/+10
|
* Add plugin settings change watcherChocobozzz2020-05-042-1/+3
|
* Client calls revoke-token endpoint on logoutChocobozzz2020-05-041-1/+1
|
* Add external login buttonsChocobozzz2020-05-041-0/+4
|
* Add external login testsChocobozzz2020-05-041-2/+2
|
* Begin support for external authsChocobozzz2020-05-042-12/+64
|
* Add ability for auth plugins to hook tokens validityChocobozzz2020-05-041-2/+1
|
* Support logout and add id and pass testsChocobozzz2020-05-047-36/+47
|
* Avoir some circular dependenciesChocobozzz2020-05-0414-25/+31
|
* Begin auth plugin supportChocobozzz2020-05-041-2/+12
|
* Add filter inputs for blacklisted videos and muted accounts/serversRigel Kent2020-05-013-5/+35
|
* Add search for video, reporter and channel name fieldsRigel Kent2020-05-011-0/+1
|
* Don't leak unlisted videos in comments feedChocobozzz2020-04-211-2/+2
|
* Add licence and language support to y-dl importsChocobozzz2020-04-201-3/+3
|
* Add thumbnail / preview generation from url on the fly (#2646)Kim2020-04-201-6/+40
| | | | | | | | | | | * Add thumbnails generation on the fly to URL import * Display generated preview to import first edit * Use ternary to get type inference * Move preview/thumbnail test just after import Co-authored-by: kimsible <kimsible@users.noreply.github.com>
* Use originallyPublishedAt from body on import if it existsChocobozzz2020-04-171-1/+1
|
* Do not support subscriptions to accountsChocobozzz2020-04-161-0/+1
|
* Fix import captions testChocobozzz2020-04-151-1/+2
|
* Add getSubs to YoutubeDL video importkimsible2020-04-141-1/+28
|
* Add CORS to AP routesChocobozzz2020-04-101-0/+2
|
* Add ability for plugins to add custom routesChocobozzz2020-04-101-11/+30
|
* Support audio files importChocobozzz2020-04-032-24/+9
|
* Fix sitemapChocobozzz2020-04-011-2/+2
|
* Update server dependenciesChocobozzz2020-04-011-6/+8
|
* Put channel stats behind withStats flagRigel Kent2020-03-311-2/+5
|
* Fix 500 when adding video in playlistChocobozzz2020-03-191-1/+7
|
* Fix total videos statsChocobozzz2020-03-131-5/+6
|
* Implement pagination for overviews endpointChocobozzz2020-03-111-27/+43
|
* Fix CSP issue on WebFinger service (#2541)Lucien A2020-03-111-0/+3
| | | | | | | * Fix CSP issue on WebFinger service WebFinger RFC states that CSP should allow any origin to access WebFinger resources. * Update webfinger.ts
* Add video file metadata to download modal, via ffprobe (#2411)Rigel Kent2020-03-101-3/+15
| | | | | | | | | | | | | | | | | | | * Add video file metadata via ffprobe * Federate video file metadata * Add tests for file metadata generation * Complete tests for videoFile metadata federation * Lint migration and video-file for metadata * Objectify metadata from getter in ffmpeg-utils * Add metadataUrl to all videoFiles * Simplify metadata API middleware * Load playlist in videoFile when requesting metadata
* Update dependenciesChocobozzz2020-02-283-4/+4
|
* Fix WS trackerChocobozzz2020-02-251-1/+1
|
* Merge branch 'release/2.1.0' into developChocobozzz2020-02-201-1/+7
|\
| * Fix CSP for embedsChocobozzz2020-02-201-1/+7
| |
* | Refactor email enabled functionChocobozzz2020-02-172-9/+7
| |
* | Creating a user with an empty password will send an email to let him set his ↵John Livingston2020-02-171-1/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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