You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
304 B

# Only ever called from the development-only jump panel.
module DevJumpHelper
def dev_jump_stage_count
Node.roots.viewable.first&.children&.ordered&.stage&.size.to_i
end
def dev_jump_path(path, query = {})
[ "/#{I18n.locale}#{path}", query.to_query.presence ].compact.join("?")
end
end