Add option to make http functions private (Require authentication, currently just redirects to login page; Should look into cookie + JWT + api key)
This commit is contained in:
@@ -5,7 +5,8 @@ def create_http_function_view_model(http_function):
|
||||
"name": http_function['name'],
|
||||
"script_content": http_function['script_content'],
|
||||
"invoked_count": http_function['invoked_count'],
|
||||
"environment_info": http_function['environment_info']
|
||||
"environment_info": http_function['environment_info'],
|
||||
"is_public": http_function['is_public']
|
||||
}
|
||||
|
||||
return function_view_model
|
||||
|
||||
Reference in New Issue
Block a user