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.
|
|
|
hooks = ["http.*:\/\/users.$HOST.*"]
|
|
|
|
def run(ctx, r):
|
|
return {
|
|
"content_type": "text/html",
|
|
"body": "<h1>all users registered on system</h1>"+("<br>".join(ctx.auth.get_real_users()))
|
|
} |