wedding-planner/app/controllers/expenses_controller.rb

8 lines
158 B
Ruby

# Copyright (C) 2024 Manuel Bustillo
class ExpensesController < ApplicationController
def summary
render json: Expenses::TotalQuery.new.call
end
end