thedrummeraki/tanoshimu

View on GitHub
app/models/home/categories/top_coming_soon.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
module Home
  module Categories
    class TopComingSoon < Home::Categories::BaseCategory
      def title_template
        "categories.top_coming_soon.title"
      end

      def scopes
        [:coming_soon]
      end

      def enabled?
        true
      end
    end
  end
end