Coursemology/coursemology2

View on GitHub
app/controllers/components/course/levels_component.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
class Course::LevelsComponent < SimpleDelegator
  include Course::ControllerComponentHost::Component

  def self.display_name
    I18n.t('components.levels.name')
  end

  def self.gamified?
    true
  end

  def sidebar_items
    return [] unless can?(:read, Course::Level.new(course: current_course))

    [
      {
        key: :levels,
        icon: :levels,
        title: I18n.t('course.levels.sidebar_title'),
        type: :admin,
        weight: 6,
        path: course_levels_path(current_course)
      }
    ]
  end
end