ahoy_panel 0.0.18 → 0.0.20
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14e70a946cda4c1d38e3076f597a27d7f2833fd9b8311d16917512c14580f99d
|
4
|
+
data.tar.gz: 04e3ef4321a1017982e07cb1cfe85717b68cee79afccfd3e4c5fa30fb9663973
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd745aa561acb937c2b7c757b6ec32fe3ae07802a4aa7e4eddb5f59fc8cdb7d8ffa329fa788192cb05a8d537639efe7e609b57c9e6b08aadf93fad421f5e9bff
|
7
|
+
data.tar.gz: 725fceed6909a44884685c46b1a37b175fec8579ec011f159a784475f4f4bba8aa3f8745108c154a301a4579c5ed57d86e547318563078ef04cacf313c0b8e6d
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module AhoyPanel
|
2
|
+
class EventsController < ApplicationController
|
3
|
+
def index
|
4
|
+
@start_date = params[:start_date].to_date.beginning_of_day
|
5
|
+
@end_date = params[:end_date].to_date.end_of_day
|
6
|
+
@page = params[:page]
|
7
|
+
|
8
|
+
@events = ::Ahoy::Event.where(time: @start_date..@end_date).order(:id)
|
9
|
+
|
10
|
+
if @page.present?
|
11
|
+
@events = @events.page(@page)
|
12
|
+
end
|
13
|
+
|
14
|
+
render json: { events: @events, total_count: @page.present? ? @events.total_count : nil }
|
15
|
+
end
|
16
|
+
|
17
|
+
def dates
|
18
|
+
start_date = ::Ahoy::Event.order(time: :asc).first.time.to_date
|
19
|
+
end_date = ::Ahoy::Event.order(time: :desc).first.time.to_date
|
20
|
+
|
21
|
+
render json: {
|
22
|
+
start_date: start_date,
|
23
|
+
end_date: end_date
|
24
|
+
}
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -21,7 +21,7 @@ module AhoyPanel
|
|
21
21
|
render json: { visit: @visit, events: @events }
|
22
22
|
end
|
23
23
|
|
24
|
-
def
|
24
|
+
def dates
|
25
25
|
start_date = ::Ahoy::Visit.order(started_at: :asc).first.started_at.to_date
|
26
26
|
end_date = ::Ahoy::Visit.order(started_at: :desc).first.started_at.to_date
|
27
27
|
|
data/config/routes.rb
CHANGED
data/lib/ahoy_panel/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ahoy_panel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.20
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Jeon
|
@@ -92,6 +92,7 @@ files:
|
|
92
92
|
- Rakefile
|
93
93
|
- app/assets/stylesheets/ahoy_panel/application.css
|
94
94
|
- app/controllers/ahoy_panel/application_controller.rb
|
95
|
+
- app/controllers/ahoy_panel/events_controller.rb
|
95
96
|
- app/controllers/ahoy_panel/visits_controller.rb
|
96
97
|
- app/helpers/ahoy_panel/application_helper.rb
|
97
98
|
- app/jobs/ahoy_panel/application_job.rb
|