oneclickorgs/one-click-orgs

View on GitHub
app/models/founder_member.rb

Summary

Maintainability
A
0 mins
Test Coverage
# A convenience class to allow creation of a Member model object, but using
# 'FounderMember.new' instead of 'Member.new'.
#
# It does not do anything beyond this (for example, it does not set the member class
# automatically.)
class FounderMember < Member
  @abstract_class = true
end