oneclickorgs/one-click-orgs

View on GitHub
app/models/membership_proposal.rb

Summary

Maintainability
A
0 mins
Test Coverage
class MembershipProposal < Proposal  
  def voting_system
    organisation.constitution.voting_system(:membership)
  end
  
  def decision_notification_message
    "If you have previously printed/saved a PDF copy of the member list, this prior copy is now out of date. Please consider reprinting/saving a copy of the latest member list for your records."
  end
end