Files
subtle-storm/app/controllers/project_admin/application_controller.rb
T
2026-03-22 23:04:41 +02:00

14 lines
255 B
Ruby

# frozen_string_literal: true
module ProjectAdmin
class ApplicationController < ::ApplicationController
before_action :fetch_project
private
def fetch_project
@project = Project.find_by!(code: params[:project_id])
end
end
end