diff options
author | Malf Furious <m@lfurio.us> | 2018-07-26 05:00:27 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-07-26 05:00:27 -0400 |
commit | d8b715d86069f247853565a2fde83d2846e853b0 (patch) | |
tree | e4332a8e90bae4712e095d5f9d3ab53deee52217 /app/index.php | |
parent | 0dc6d736c254fc38b2e923069827e47a2494b256 (diff) | |
download | scrott-d8b715d86069f247853565a2fde83d2846e853b0.tar.gz scrott-d8b715d86069f247853565a2fde83d2846e853b0.zip |
Add "My Groups" page
Diffstat (limited to 'app/index.php')
-rw-r--r-- | app/index.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/index.php b/app/index.php index b0b191f..0a106c2 100644 --- a/app/index.php +++ b/app/index.php @@ -59,6 +59,11 @@ function main(array $argv) : void user::setCurrent(); location("/"); break; + + case "groups": + setPageName("<i>Groups</i>"); + require "view/groups.php"; + break; } /* TODO */ |