1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 03:35:55 +00:00
* add filter action to ignore feed-provided tags
 * simplify handling of various filter-provided tags
 * bump schema to 146
This commit is contained in:
Andrew Dolgov
2021-12-20 07:56:16 +03:00
parent 92747b1d21
commit 40b2356be2
8 changed files with 46 additions and 25 deletions

View File

@@ -0,0 +1,2 @@
insert into ttrss_filter_actions (id,name,description) values (10, 'ignore-tag',
'Ignore tags');

View File

@@ -249,6 +249,9 @@ insert into ttrss_filter_actions (id,name,description) values (8, 'stop',
insert into ttrss_filter_actions (id,name,description) values (9, 'plugin',
'Invoke plugin');
insert into ttrss_filter_actions (id,name,description) values (10, 'ignore-tag',
'Ignore tags');
create table ttrss_filters2(id integer primary key auto_increment,
owner_uid integer not null,
match_any_rule boolean not null default false,

View File

@@ -0,0 +1,2 @@
insert into ttrss_filter_actions (id,name,description) values (10, 'ignore-tag',
'Ignore tags');

View File

@@ -245,6 +245,9 @@ insert into ttrss_filter_actions (id,name,description) values (8, 'stop',
insert into ttrss_filter_actions (id,name,description) values (9, 'plugin',
'Invoke plugin');
insert into ttrss_filter_actions (id,name,description) values (10, 'ignore-tag',
'Ignore tags');
create table ttrss_filters2(id serial not null primary key,
owner_uid integer not null references ttrss_users(id) on delete cascade,
match_any_rule boolean not null default false,