This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class PslfProfile < ApplicationRecord | |
belongs_to :employee | |
has_many :pslf_forms # the forms/form-data we generated/submitted via Tio | |
has_many :loan_sequences | |
has_many :pslf_assets # documents uploaded | |
social_security: encrypted # make sure this is always excluded from logs | |
is_interested: boolean # we have to keep track of whether the user clicks "not interested" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle' | |
}); |