mirror of
https://github.com/czhu12/canine.git
synced 2026-05-25 06:39:46 -05:00
10 lines
214 B
Ruby
10 lines
214 B
Ruby
class Projects::BaseController < ApplicationController
|
|
include ProjectsHelper
|
|
before_action :set_project
|
|
|
|
private
|
|
def set_project
|
|
@project = current_account.projects.find(params[:project_id])
|
|
end
|
|
end
|