aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/shared
Commit message (Collapse)AuthorAgeFilesLines
* Add option to not transcode original resolutionChocobozzz2022-08-091-0/+3
|
* Include video file id in APIChocobozzz2022-07-291-0/+1
|
* Fix lintChocobozzz2022-07-131-1/+1
|
* Introduce experimental telemetryChocobozzz2022-07-063-1/+32
|
* Fix saving permanent live replay on quick restreamChocobozzz2022-05-251-2/+22
|
* Fix avatars in notificationsChocobozzz2022-05-251-4/+16
|
* Add use proxy for s3 (#4973)Chocobozzz2022-05-091-0/+5
| | | | | | | | | | | | | * Fix object storage to be accessible via proxy * fix lint * Use hpagent * Fix lint * Fix PR Co-authored-by: noellabo <noel.yoshiba@gmail.com>
* Support live session in serverChocobozzz2022-05-031-2/+7
|
* Add ability to save replay of permanent livesChocobozzz2022-04-211-5/+5
|
* Support video views/viewers stats in serverChocobozzz2022-04-152-0/+94
| | | | | | | | | | * Add "currentTime" and "event" body params to view endpoint * Merge watching and view endpoints * Introduce WatchAction AP activity * Add tables to store viewer information of local videos * Add endpoints to fetch video views/viewers stats of local videos * Refactor views/viewers handlers * Support "views" and "viewers" counters for both VOD and live videos
* Refactor AP context builderChocobozzz2022-03-241-1/+1
|
* Remove activitypub helperChocobozzz2022-03-231-1/+1
| | | | Put functions in lib/activitypub instead
* Fix angular buildChocobozzz2022-03-221-1/+1
|
* Rename studio to editorChocobozzz2022-03-221-5/+5
|
* Add video edition finished notificationChocobozzz2022-03-221-1/+33
|
* Merge branch 'release/4.1.0' into developChocobozzz2022-03-081-6/+6
|\
| * Fix multiple servers testsChocobozzz2022-03-081-2/+2
| |
| * Fix channel testsChocobozzz2022-03-081-6/+6
| |
* | Add basic video editor supportChocobozzz2022-02-282-5/+16
| |
* | Implement avatar miniatures (#4639)kontrollanten2022-02-281-1/+10
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * client: remove unused file * refactor(client/my-actor-avatar): size from input Read size from component input instead of scss, to make it possible to use smaller avatar images when implemented. * implement avatar miniatures close #4560 * fix(test): max file size * fix(search-index): normalize res acc to avatarMini * refactor avatars to an array * client/search: resize channel avatar to 120 * refactor(client/videos): remove unused function * client(actor-avatar): set default size * fix tests and avatars full result When findOne is used only an array containting one avatar is returned. * update migration version and version notations * server/search: harmonize normalizing * Cleanup avatar miniature PR Co-authored-by: Chocobozzz <me@florianbigard.com>
* Fix buildChocobozzz2021-12-172-2/+2
|
* Move test functions outside extra-utilsChocobozzz2021-12-1724-8/+1765
|
* shared/ typescript types dir server-commandsChocobozzz2021-12-171-1/+1
|
* Fix videos language testsChocobozzz2021-12-161-1/+3
|
* chore(refactor): remove shared folder dependencies to the serverlutangar2021-12-163-0/+187
Many files from the `shared` folder were importing files from the `server` folder. When attempting to use Typescript project references to describe dependencies, it highlighted a circular dependency beetween `shared` <-> `server`. The Typescript project forbid such usages. Using project references greatly improve performance by rebuilding only the updated project and not all source files. > see https://www.typescriptlang.org/docs/handbook/project-references.html