Update and connect to drone (#1)
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #1
This commit is contained in:
parent
0887a5f6b9
commit
fd75a7c6ff
17 changed files with 215 additions and 170 deletions
|
@ -1,5 +1,5 @@
|
|||
class ExpensesController < ApplicationController
|
||||
before_action :set_expense, only: %i[ show edit update destroy ]
|
||||
before_action :set_expense, only: %i[show edit update destroy]
|
||||
|
||||
# GET /expenses or /expenses.json
|
||||
def index
|
||||
|
@ -58,13 +58,14 @@ class ExpensesController < ApplicationController
|
|||
end
|
||||
|
||||
private
|
||||
# Use callbacks to share common setup or constraints between actions.
|
||||
def set_expense
|
||||
@expense = Expense.find(params[:id])
|
||||
end
|
||||
|
||||
# Only allow a list of trusted parameters through.
|
||||
def expense_params
|
||||
params.require(:expense).permit(:description, :payment, :period, :credit_card, :estimated)
|
||||
end
|
||||
# Use callbacks to share common setup or constraints between actions.
|
||||
def set_expense
|
||||
@expense = Expense.find(params[:id])
|
||||
end
|
||||
|
||||
# Only allow a list of trusted parameters through.
|
||||
def expense_params
|
||||
params.require(:expense).permit(:description, :payment, :period, :credit_card, :estimated)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue