We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3cd92c commit f6586a4Copy full SHA for f6586a4
apps/function_lib/views/function_lib_views.py
@@ -156,6 +156,7 @@ class EditIcon(APIView):
156
157
@action(methods=['PUT'], detail=False)
158
@has_permissions(RoleConstants.ADMIN, RoleConstants.USER)
159
+ @log(menu=_('Function'), operate=_("Edit icon"))
160
def put(self, request: Request, id: str):
161
return result.success(
162
FunctionLibSerializer.IconOperate(
@@ -167,6 +168,7 @@ class AddInternalFun(APIView):
167
168
169
@action(methods=['GET'], detail=False)
170
171
+ @log(menu=_('Function'), operate=_("Add internal function"))
172
def get(self, request: Request, id: str):
173
174
FunctionLibSerializer.InternalFunction(
0 commit comments