thedrummeraki/tanoshimu

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

Summary

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

      def scopes
        [:trending, :airing]
      end

      def enabled?
        true
      end
    end
  end
end