feat(perms): add new permission for viewing recently added media (#2129)

* feat(perms): add new permission for viewing recently added media

* test: update login test to check for Trending instead of Recently Added

* fix: avoid conflict with new watchlist perms
This commit is contained in:
TheCatLady
2022-08-19 16:32:24 -04:00
committed by GitHub
parent 5247f14968
commit a12697b061
5 changed files with 38 additions and 18 deletions

View File

@@ -21,6 +21,7 @@ export enum Permission {
MANAGE_ISSUES = 1048576,
VIEW_ISSUES = 2097152,
CREATE_ISSUES = 4194304,
RECENT_VIEW = 67108864,
}
export interface PermissionCheckOptions {