mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
commit
5a9bdfea5f
4 changed files with 10 additions and 3 deletions
|
|
@ -1 +1 @@
|
||||||
0.34.1
|
0.34.2
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
# [0.34.2] - 2025-10-31
|
||||||
|
|
||||||
|
## Fixed
|
||||||
|
|
||||||
|
- Fixed a bug in UTM trackable concern. #1909
|
||||||
|
|
||||||
# [0.34.1] - 2025-10-30
|
# [0.34.1] - 2025-10-30
|
||||||
|
|
||||||
## Fixed
|
## Fixed
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
module UtmTrackable
|
||||||
extend ActiveSupport::Concern
|
extend ActiveSupport::Concern
|
||||||
|
|
||||||
UTM_PARAMS = %w[utm_source utm_medium utm_campaign utm_term utm_content].freeze
|
UTM_PARAMS = %w[utm_source utm_medium utm_campaign utm_term utm_content].freeze
|
||||||
|
|
|
||||||
|
|
@ -38,8 +38,8 @@ class Tracks::DailyGenerationJob < ApplicationJob
|
||||||
|
|
||||||
Tracks::ParallelGeneratorJob.perform_later(
|
Tracks::ParallelGeneratorJob.perform_later(
|
||||||
user.id,
|
user.id,
|
||||||
start_at: start_timestamp,
|
start_at: Time.zone.at(start_timestamp),
|
||||||
end_at: Time.current.to_i,
|
end_at: Time.current,
|
||||||
mode: 'daily'
|
mode: 'daily'
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue