8 lines
158 B
Ruby
8 lines
158 B
Ruby
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
class ExpensesController < ApplicationController
|
|
def summary
|
|
render json: Expenses::TotalQuery.new.call
|
|
end
|
|
end
|