jerqi commented on code in PR #9177:
URL: https://github.com/apache/gravitino/pull/9177#discussion_r2544668301


##########
api/src/main/java/org/apache/gravitino/authorization/Privilege.java:
##########
@@ -98,7 +98,13 @@ enum Name {
     /** The privilege to create a tag */
     CREATE_TAG(0L, 1L << 21),
     /** The privilege to apply a tag */
-    APPLY_TAG(0L, 1L << 22);
+    APPLY_TAG(0L, 1L << 22),
+    /** The privilege to create a job template */
+    CREATE_JOB_TEMPLATE(0L, 1L << 23),
+    /** The privilege to use a job template */
+    USE_JOB_TEMPLATE(0L, 1L << 24),
+    /** The privilege to create a job */
+    CREATE_JOB(0L, 1L << 25);

Review Comment:
   Another point: If all of the jobs are under the metalake, it's a little  
inconvenient for management. The jobs usually are grouped by business.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to