Browse Source

fix: hook tasks use is delivered data

tags/v3.1.5
yystopf 5 years ago
parent
commit
bfef459b75
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/controllers/projects/webhooks_controller.rb

+ 1
- 1
app/controllers/projects/webhooks_controller.rb View File

@@ -59,7 +59,7 @@ class Projects::WebhooksController < Projects::BaseController
end

def tasks
@tasks = @webhook.tasks.order("delivered desc")
@tasks = @webhook.tasks.where(is_delivered: true).order("delivered desc")
@tasks = kaminari_paginate(@tasks)
end



Loading…
Cancel
Save