cirandas.net

ref: dockerize

plugins/organization_ratings/lib/average_rating_block.rb


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
class AverageRatingBlock < Block
  include RatingsHelper

  def self.description
    _('Organization Average Rating')
  end

  def help
    _('This block displays the organization average rating.')
  end

  def cacheable?
    false
  end
end