mumuki/mumuki-domain

View on GitHub
app/models/concerns/navigation/terminal_navigation.rb

Summary

Maintainability
A
0 mins
Test Coverage
module TerminalNavigation
  def navigation_end?
    true
  end

  def friendly
    name
  end

  def navigable_name
    name
  end

  def structural_parent
    nil
  end

  def siblings
    []
  end

  def next_for(_user)
    nil
  end
end