hummingbird-me/kitsu-server

View on GitHub
app/models/pro_membership_plan.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class ProMembershipPlan < ApplicationRecord
  scope :recurring, -> { where(recurring: true) }
  scope :nonrecurring, -> { where(recurring: false) }
end