oneclickorgs/one-click-orgs

View on GitHub
app/models/founding_member.rb

Summary

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