diff --git a/towers/users.py b/towers/users.py index d0ed1b7..3de453b 100644 --- a/towers/users.py +++ b/towers/users.py @@ -1,5 +1,8 @@ -hooks = [] +hooks = ["http.*:\/\/users.$HOST.*"] -def run(ctx): - pass \ No newline at end of file +def run(ctx, r): + return { + "content_type": "text/html", + "body": "

all users registered on system

"+("
".join(ctx.auth.get_real_users())) + } \ No newline at end of file