diff options
| author | winter | 2024-12-24 00:13:29 +0000 |
|---|---|---|
| committer | winter | 2024-12-24 00:13:29 +0000 |
| commit | e7e237dacaf7bbaa739c7e9a430958aed09aa647 (patch) | |
| tree | cc18c4715128bde2863ad9d54a6025fdb097d539 /Digitigrade/Model/Note.php | |
| parent | 26c37ebbdc58c6089741230f0b723b0ff507aa57 (diff) | |
add interaction buttons (they dont do anything)
Diffstat (limited to 'Digitigrade/Model/Note.php')
| -rw-r--r-- | Digitigrade/Model/Note.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Digitigrade/Model/Note.php b/Digitigrade/Model/Note.php index 37ddff3..3c0c690 100644 --- a/Digitigrade/Model/Note.php +++ b/Digitigrade/Model/Note.php @@ -103,7 +103,7 @@ class Note extends PushableModel { } public static function findAllWithAuthor(Actor $author, ?int $limit = null, int $offset = 0): array { - return self::findAllWhere('author = ?', [$author->id], $limit, $offset); + return self::findAllWhere('author = ?', [$author->id], $limit, $offset, 'created DESC'); } public function getInteractions(): array { |
