Skip to content

Commit 4612f11

Browse files
committed
IDEV-1877: Add optional parameter for domain filter.
1 parent e96f495 commit 4612f11

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

domaintools/cli/commands/feeds.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@ def feeds_nad(
5858
"--after",
5959
help="Start of the time window, relative to the current time in seconds, for which data will be provided",
6060
),
61+
domain: str = typer.Option(
62+
None,
63+
"-d",
64+
"--domain",
65+
help="A string value used to filter feed results",
66+
),
6167
top: str = typer.Option(
6268
None,
6369
"--top",
@@ -117,6 +123,12 @@ def feeds_nod(
117123
"--after",
118124
help="Start of the time window, relative to the current time in seconds, for which data will be provided",
119125
),
126+
domain: str = typer.Option(
127+
None,
128+
"-d",
129+
"--domain",
130+
help="A string value used to filter feed results",
131+
),
120132
top: str = typer.Option(
121133
None,
122134
"--top",

0 commit comments

Comments
 (0)