Skip to content

Instantly share code, notes, and snippets.

@infinityrobot
Created May 6, 2010 23:12
Show Gist options
  • Save infinityrobot/392802 to your computer and use it in GitHub Desktop.
Save infinityrobot/392802 to your computer and use it in GitHub Desktop.
def authorised?
true
end
def authorised?
@item = Item.find(params[:id])
if @item.user != current_user
flash[:error] = "You can only edit your own items!"
redirect_to @item
return false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment