Skip to content

Instantly share code, notes, and snippets.

@kennisons77
Created April 8, 2016 21:23
Show Gist options
  • Save kennisons77/924d156941c849db1c672346e5c55594 to your computer and use it in GitHub Desktop.
Save kennisons77/924d156941c849db1c672346e5c55594 to your computer and use it in GitHub Desktop.
Account type STI for new accounts page
class CreditAccountcontrollers < DebtAccountcontrollers
end
class DebtAccountController < AccountController
def index
end
def show
end
end
class LoanAccount < DebtAccount
end
class RetirementAccountController < SaveAccountController
end
class SaveAccountController < AccountController
end
class SavingsAccountController < SaveAccountController
end
class SpendAccountController < AccountController
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment