Module: Brightcontent::PageCore::ClassMethods
- Defined in:
- app/models/brightcontent/page_core.rb
Instance Method Summary collapse
Instance Method Details
#find_by_path(path) ⇒ Object
20 21 22 |
# File 'app/models/brightcontent/page_core.rb', line 20 def find_by_path(path) find_by(slug: sanitize_path(path)) end |
#find_by_path!(path) ⇒ Object
24 25 26 |
# File 'app/models/brightcontent/page_core.rb', line 24 def find_by_path!(path) find_by!(slug: sanitize_path(path)) end |
#sanitize_path(path) ⇒ Object
28 29 30 |
# File 'app/models/brightcontent/page_core.rb', line 28 def sanitize_path(path) path[1..-1] end |