dawarich/app/controllers/maps_v2_controller.rb
2025-11-16 12:45:26 +01:00

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