-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2900 from omnivore-app/fix/web/continue-reading
update the filter value to use is:reading of the Continue Reading filter
- Loading branch information
Showing
5 changed files
with
31 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
packages/db/migrations/0130.do.update_continue_reading_filter.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
-- Type: DO | ||
-- Name: update_continue_reading_filter | ||
-- Description: Update the filter value in the Continue Reading filter | ||
|
||
BEGIN; | ||
|
||
UPDATE omnivore.filters | ||
SET filter = 'in:inbox sort:read-desc is:reading' | ||
WHERE name = 'Continue Reading' AND default_filter = true; | ||
|
||
COMMIT; |
11 changes: 11 additions & 0 deletions
11
packages/db/migrations/0130.undo.update_continue_reading_filter.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
-- Type: UNDO | ||
-- Name: update_continue_reading_filter | ||
-- Description: Update the filter value in the Continue Reading filter | ||
|
||
BEGIN; | ||
|
||
UPDATE omnivore.filters | ||
SET filter = 'in:inbox sort:read-desc is:unread' | ||
WHERE name = 'Continue Reading' AND default_filter = true; | ||
|
||
COMMIT; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aef6bf5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
omnivore-demo – ./
omnivore-demo-git-main-omnivore.vercel.app
omnivore-demo.vercel.app
omnivore-demo-omnivore.vercel.app
web-demo.omnivore.app
demo.omnivore.app