Skip to content

Commit

Permalink
[ADD] New permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
whikernel committed Mar 24, 2024
1 parent d601086 commit a29bb02
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion dfir_iris_client/helper/authorization.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,19 @@ class CaseAccessLevel(enum.Enum):

class Permissions(enum.Enum):
standard_user = 0x1

server_administrator = 0x2

alerts_read = 0x4
alerts_write = 0x8
alerts_delete = 0x10

search_across_cases = 0x20

customers_read = 0x40
customers_write = 0x80

case_templates_read = 0x100
case_templates_write = 0x200

activities_read = 0x400
all_activities_read = 0x800

0 comments on commit a29bb02

Please sign in to comment.