Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. has_permission_on :post, :to => :manage do
  2. if_attribute :creator_id => is{user.id}
  3. end
  4.  
  5. class Post < ActiveRecord::Base
  6. def publish!
  7. update_attributes(:published, true)
  8. end
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement