You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think User model was originally intended to have a has_many :doc_assignments, through: :repo_subscriptions association instead of has_many :repo_assignments, through: :repo_subscriptions?
However even if it was changed to has_many :doc_assignments that association ins't necessary in the app currently. So might be best to just delete it in the first place?
The text was updated successfully, but these errors were encountered:
I noticed an association in the User model that seems to reference a missing model called RepoAssignment:
which was introduced back in this commit
CodeTriage/app/models/user.rb
Line 14 in 190f315
I think User model was originally intended to have a
has_many :doc_assignments, through: :repo_subscriptions
association instead ofhas_many :repo_assignments, through: :repo_subscriptions
?However even if it was changed to
has_many :doc_assignments
that association ins't necessary in the app currently. So might be best to just delete it in the first place?The text was updated successfully, but these errors were encountered: