Skip to content

Support for boost estimations - #2482

Mark Harding requested to merge feat/boost-estimator-2482 into master

Ticket(s) / Related Merge Requests

#2482 (closed)

Summary of Changes

Introduces a boost estimation endpoint

Testing Considerations

Test the estimated views values from using the frontend

Deployment Considerations

Deploy our new table

CREATE TABLE IF NOT EXISTS boost_estimates
(
    target_audience int NOT NULL,
    target_location int NOT NULL,
    payment_method int NOT NULL,
    24h_bids int NOT NULL,
    24h_views int NOT NULL,
    PRIMARY KEY (target_audience, target_location, payment_method)
) ENGINE=InnoDB;

Regression Scope

None

Platform Affected (web, mobile, etc)

API

Developer Testing Completed

Screenshots / Screen Recording

Screen_Recording_2022-12-15_at_13.38.53

Does this impact

  • Localization
  • Dark/light mode
  • Guest mode

Definition of Done Checklist

  • The Acceptance Criteria has been met
  • Code is tested: Testing includes unit/spec, E2E/automated and manual testing
  • Merge requests description has been filled out

Merge request reports