Guest User

Untitled

a guest
Apr 25th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. def should_create_permalink?
  2. if self.class.permalink_options[:if]
  3. evaluate_method(self.class.permalink_options[:if])
  4. elsif self.class.permalink_options[:unless]
  5. !evaluate_method(self.class.permalink_options[:unless])
  6. else
  7. true
  8. end
  9. end
Add Comment
Please, Sign In to add comment