mirror of
https://github.com/czhu12/canine.git
synced 2025-12-17 17:04:37 -06:00
10 lines
173 B
Ruby
10 lines
173 B
Ruby
class Clusters::BaseController < ApplicationController
|
|
before_action :set_cluster
|
|
|
|
private
|
|
|
|
def set_cluster
|
|
@cluster = Cluster.find(params[:cluster_id])
|
|
end
|
|
end
|