mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 17:51:39 -05:00
9 lines
225 B
Ruby
9 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
|