-
Notifications
You must be signed in to change notification settings - Fork 187
Add feature to Group starred Items per Feed #3148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
4701189
f526238
4d8cfbb
40c5208
a40649a
5d4e442
fedeb28
0f9024d
645b163
af1fd94
240f48e
e87cdbd
c145083
c7a0c3c
8c11a6d
3f936d7
79af9de
8d30516
2373591
7f13ed3
89aa9e9
837e2d8
ddedb25
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -77,7 +77,7 @@ | |
| // in case this is called directly and not from the website use the | ||
| // internal state | ||
| if ($showAll === null) { | ||
| $showAll = $this->settings->getUserValue( | ||
|
Check failure on line 80 in lib/Controller/ItemController.php
|
||
| $this->getUserId(), | ||
| $this->appName, | ||
| 'showAll' | ||
|
|
@@ -85,20 +85,20 @@ | |
| } | ||
|
|
||
| if ($oldestFirst === null) { | ||
| $oldestFirst = $this->settings->getUserValue( | ||
|
Check failure on line 88 in lib/Controller/ItemController.php
|
||
| $this->getUserId(), | ||
| $this->appName, | ||
| 'oldestFirst' | ||
| ) === '1'; | ||
| } | ||
|
|
||
| $this->settings->setUserValue( | ||
|
Check failure on line 95 in lib/Controller/ItemController.php
|
||
| $this->getUserId(), | ||
| $this->appName, | ||
| 'lastViewedFeedId', | ||
| $id | ||
| ); | ||
| $this->settings->setUserValue( | ||
|
Check failure on line 101 in lib/Controller/ItemController.php
|
||
| $this->getUserId(), | ||
| $this->appName, | ||
| 'lastViewedFeedType', | ||
|
|
@@ -155,7 +155,8 @@ | |
| $limit, | ||
| $offset, | ||
| $oldestFirst, | ||
| $search_items | ||
| $search_items, | ||
| $id | ||
| ); | ||
| break; | ||
| } | ||
|
|
@@ -186,7 +187,7 @@ | |
| #[NoAdminRequired] | ||
| public function newItems(int $type, int $id, $lastModified = 0): array | ||
| { | ||
| $showAll = $this->settings->getUserValue( | ||
|
Check failure on line 190 in lib/Controller/ItemController.php
|
||
| $this->getUserId(), | ||
| $this->appName, | ||
| 'showAll' | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.