diff options
author | Malf Furious <m@lfurio.us> | 2018-11-05 03:32:06 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-11-05 03:32:06 -0500 |
commit | 434ebff8466ead8f9bb4c0f00037a107cbf842c4 (patch) | |
tree | 183133c4c4f6ccb7c1e0829c771b02a34eb92901 /app/model/pad.php | |
parent | 81ba021468e38de09ac292115bb2f15c9d4deec0 (diff) | |
download | scrott-434ebff8466ead8f9bb4c0f00037a107cbf842c4.tar.gz scrott-434ebff8466ead8f9bb4c0f00037a107cbf842c4.zip |
Add pad closed issues view
This view is routable from app/<pad_guid>/closed. It is a separate view
for displaying the closed issues of a pad. index.php as well as the pad
model code is also updated to support this view.
This view currently *does not* support paging. This will very likely be
added in the future.
Signed-off-by: Malf Furious <m@lfurio.us>
Diffstat (limited to 'app/model/pad.php')
-rw-r--r-- | app/model/pad.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/model/pad.php b/app/model/pad.php index d7cfb23..0090c27 100644 --- a/app/model/pad.php +++ b/app/model/pad.php @@ -26,4 +26,6 @@ foreach ($stages as $s) $issues = array_merge($issues, $i); } +$closed_issues = $pad->getClosedIssues_ordByClosed(); + ?> |