thedrummeraki/tanoshimu

View on GitHub
app/models/rating.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
class Rating < ApplicationRecord
  belongs_to :user
  belongs_to :show

  def self.global
    average(:value).to_f
  end
end