From b91ece5cc479a8330e7b83197a4a5b8e000e75e9 Mon Sep 17 00:00:00 2001 From: "Tj (bougyman) Vanderpoel" Date: Wed, 7 Feb 2024 16:08:36 -0600 Subject: [PATCH] Adds canceledAt filter to issues --- Gemfile.lock | 2 +- lib/linear/models/issue.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 0207f65..7d9ea7c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - linear-cli (0.9.2) + linear-cli (0.9.3) base64 (~> 0.2) dry-cli (~> 1.0) dry-cli-completion (~> 1.0) diff --git a/lib/linear/models/issue.rb b/lib/linear/models/issue.rb index a1c1d22..4bf965e 100644 --- a/lib/linear/models/issue.rb +++ b/lib/linear/models/issue.rb @@ -16,7 +16,7 @@ class Issue many_to_one :team one_to_many :comments - BASIC_FILTER = { completedAt: { null: true } }.freeze + BASIC_FILTER = { completedAt: { null: true }, canceledAt: { null: true } }.freeze Base = fragment('BaseIssue', 'Issue') do id