module BWAPI::Client::Projects::Rules::Backfill

Backfill module for projects/rules/backfill endpoint

Public Instance Methods

create_rule_backfill(project_id, rule_id) click to toggle source

Create a backfill for a rule in project

@param project_id [Integer] id The id of project @param rule_id [Integer] id The id of rule @return [Hash] Specific rule backfill

# File lib/bwapi/client/projects/rules/backfill.rb, line 12
def create_rule_backfill(project_id, rule_id)
  post "projects/#{project_id}/rules/#{rule_id}/backfill"
end