class ContentBlockTools::Presenters::BasePresenter
def field_names
def field_names embed_code_match = ContentBlockReference::EMBED_REGEX.match(content_block.embed_code) if embed_code_match.present? all_fields = embed_code_match[4]&.reverse&.chomp("/")&.reverse all_fields&.split("/")&.map(&:to_sym) end end