Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Jonty/241087 to your computer and use it in GitHub Desktop.
Save Jonty/241087 to your computer and use it in GitHub Desktop.
def just_one_kind_of_response?(item, controller)
case controller
when 'actions'
if item.comments.blank? || item.suggestions.blank?
return true
end
when 'thoughts'
if item.comments.blank? || item.suggestions.blank?
return true
end
when 'suggestions'
if item.comments.blank? || item.actions.blank?
return true
end
end
return false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment