PeerTube_original/shared/models/users/user-flag.model.ts
Rigel Kent 5baee5fca4
rename blacklist to block/blocklist, merge block and auto-block views
- also replace whitelist with allowlist
- add advanced filters for video-block-list view
- move icons in video-block-list and video-abuse-list to left side
for visibility
- add robot icon to depict automated nature of a block in
video-block-list

resolves #2790
2020-06-10 21:12:05 +02:00

5 lines
77 B
TypeScript

export enum UserAdminFlag {
NONE = 0,
BYPASS_VIDEO_AUTO_BLOCK = 1 << 0
}