Monorepo containing core modules of Zeichen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
290 B

  1. enum Operation {
  2. 'note:read' = 1,
  3. 'note:write' = 2,
  4. 'note:delete' = 3,
  5. 'note:import' = 4,
  6. 'note:export' = 5,
  7. 'folder:read' = 7,
  8. 'folder:write' = 8,
  9. 'social:publish' = 9,
  10. 'social:unpublish' = 10,
  11. 'social:share' = 11,
  12. 'userinfo:manage' = 12,
  13. }
  14. export default Operation