aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/validators/shared
Commit message (Collapse)AuthorAgeFilesLines
* Implement signup approval in serverChocobozzz2023-01-192-2/+62
|
* Add ability to get user from file tokenChocobozzz2022-12-201-7/+5
|
* Don't inject untrusted inputChocobozzz2022-11-155-8/+13
| | | | | Even if it's already checked in middlewares It's better to have safe modals too
* Use private ACL for private videos in s3Chocobozzz2022-10-241-3/+3
|
* Put private videos under a specific subdirectoryChocobozzz2022-10-241-14/+40
|
* Support two factor authentication in backendChocobozzz2022-10-072-0/+63
|
* Remove unnecessary logsChocobozzz2022-08-171-1/+26
|
* Cleanup useless express validator messagesChocobozzz2022-08-171-2/+2
|
* Add ability to list imports of a channel syncChocobozzz2022-08-102-0/+25
|
* Prevent error on highlighted threadChocobozzz2022-07-291-3/+9
|
* Rename video full loadingChocobozzz2022-06-281-1/+1
|
* Fix video right checkChocobozzz2022-06-221-6/+7
|
* Refactor video rights checkerChocobozzz2022-06-221-16/+68
|
* Add basic video editor supportChocobozzz2022-02-282-2/+25
|
* Merge branch 'release/4.0.0' into developChocobozzz2022-01-061-3/+30
|\
| * Prevent caption listing of private videosChocobozzz2022-01-061-3/+30
| |
* | Give moderators access to edit channels (#4608)kontrollanten2021-12-131-7/+0
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * give admins access to edit all channels closes #4598 * test(channels): +admin update another users channel * Fix tests * fix(server): delete another users channel Since the channel owner isn't necessary the auth user we need to check the right account whether it's the last video or not. * REMOVE_ANY_VIDEO_CHANNEL > MANAGE_ANY_VIDEO_CHANNEL Merge REMOVE_ANY_VIDEO_CHANNEL and MANY_VIDEO_CHANNELS to MANAGE_ANY_VIDEO_CHANNEL. * user-right: moderator can't manage admins channel * client: MyVideoChannelCreateComponent > VideoChannelCreateComponent * client: MyVideoChannelEdit > VideoChannelEdit * Revert "user-right: moderator can't manage admins channel" This reverts commit 2c627c154e2bfe6af2e0f45efb27faf4117572f3. * server: clean dupl validator functionality * fix ensureUserCanManageChannel usage It's not async anymore. * server: merge channel validator middleares ensureAuthUserOwnsChannelValidator & ensureUserCanManageChannel gets merged into one middleware. * client(VideoChannelEdit): redirect to prev route * fix(VideoChannels): handle anon users * client: new routes for create/update channel * Refactor channel validators Co-authored-by: Chocobozzz <me@florianbigard.com>
* Split check user params testsChocobozzz2021-10-201-1/+1
|
* Refactor sort middlewaresChocobozzz2021-10-201-22/+0
|
* esModuleInterop to trueChocobozzz2021-08-276-6/+6
|
* Reorganize importsChocobozzz2021-07-201-2/+1
|
* Refactor requestsChocobozzz2021-07-2010-10/+10
|
* Support short uuid for GET video/playlistChocobozzz2021-06-291-2/+17
|
* Refactor include checksChocobozzz2021-06-111-2/+1
|
* Use raw SQL for most of video queriesChocobozzz2021-06-111-6/+2
|
* Fetch directly all video attributes for get APIChocobozzz2021-06-111-0/+5
|
* fetch -> loadChocobozzz2021-06-031-3/+3
| | | | avoid confusion with AP fetch functions
* Move middleware utils in middlewaresChocobozzz2021-06-0312-0/+526
helpers modules should not import models