1
0
This repository has been archived on 2023-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
body_tracking/app/controllers/goals_controller.rb
2021-01-19 18:53:02 +01:00

13 lines
191 B
Ruby

class GoalsController < ApplicationController
include Concerns::Finders
before_action :find_goal, only: [:show, :edit]
before_action :authorize
def show
end
def edit
end
end