mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-13 18:51:38 -05:00
10 lines
225 B
Ruby
10 lines
225 B
Ruby
|
|
class MapsV2Controller < ApplicationController
|
||
|
|
before_action :authenticate_user!
|
||
|
|
|
||
|
|
def index
|
||
|
|
# Default to current month
|
||
|
|
@start_date = Date.today.beginning_of_month
|
||
|
|
@end_date = Date.today.end_of_month
|
||
|
|
end
|
||
|
|
end
|