Skip to content

Instantly share code, notes, and snippets.

Created June 15, 2009 20:07
Show Gist options
  • Save anonymous/130299 to your computer and use it in GitHub Desktop.
Save anonymous/130299 to your computer and use it in GitHub Desktop.
def can_edit?(this_user)
if can_delete(this_user)
return true
end
if this_user.isadmin
return true
end
if user == this_user
return true
end
if self.locked
return false
end
return true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment