ahoy_panel 0.0.22 → 0.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/ahoy_panel/visits_controller.rb +15 -1
- data/lib/ahoy_panel/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c99fe2927ca95c1cc22bac7831f73d80f8d7dbce8daebc2f75b0e9c43c7ad1f0
|
4
|
+
data.tar.gz: 4df29b9ace88261222b9ffe91dca819c5ca0bf763c3424f2cc3a537f3be8add2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f32609d82604551f9269e3e047d45e0af2821f38fa01a8abfc917ded3099014591823cb001fa6e538f2e1cd8e1bfb5d8c9c179045d495adb53a7db00f9994010
|
7
|
+
data.tar.gz: f2129799ef75d687b5926245b80502e0e1673eb3d591ee43f4911c082321c5ff6bc5b7094f5a0922e2324d474a043d28776ed871953dd1c3f38dbf3e14f162de
|
@@ -13,8 +13,22 @@ module AhoyPanel
|
|
13
13
|
end
|
14
14
|
|
15
15
|
@visits = ::Ahoy::Visit.where(started_at: @date_range).order(:id)
|
16
|
+
|
16
17
|
filtering_params.each do |key, value|
|
17
|
-
|
18
|
+
case key
|
19
|
+
when :id
|
20
|
+
@visits = @visits.where(id: value)
|
21
|
+
when :user_id
|
22
|
+
@visits = @visits.where(user_id: value)
|
23
|
+
when :referring_domain
|
24
|
+
@visits = @visits.where("referring_domain ilike ?", "%#{value}%")
|
25
|
+
when :country
|
26
|
+
@visits = @visits.where("country ilike ?", "%#{value}%")
|
27
|
+
when :city
|
28
|
+
@visits = @visits.where("city ilike ?", "%#{value}%")
|
29
|
+
when :region
|
30
|
+
@visits = @visits.where("region ilike ?", "%#{value}%")
|
31
|
+
end
|
18
32
|
end
|
19
33
|
|
20
34
|
if @page.present?
|
data/lib/ahoy_panel/version.rb
CHANGED