11 lines
197 B
Ruby
11 lines
197 B
Ruby
module PageLeafScoped extend ActiveSupport::Concern
|
|
included do
|
|
before_action :set_leaf
|
|
end
|
|
|
|
private
|
|
def set_leaf
|
|
@leaf = Current.user.leaves.find(params[:page_id])
|
|
end
|
|
end
|