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
There are two problems with the way we currently bootstrap constants (e.g. ContactTypes and GenderConstants):
We bootstrap lazily, i.e. the constants data is in the global namespace until the module is first loaded. This means a user could potentially change the data to something malicious before bootstrapping. We should bootstrap all of our data on page load.
It's already evident that there will be a lot of boilerplate. ContactTypes and GenderConstants are actually identical. Let's determine a programatic way of doing this.
The text was updated successfully, but these errors were encountered:
There are two problems with the way we currently bootstrap constants (e.g.
ContactTypes
andGenderConstants
):ContactTypes
andGenderConstants
are actually identical. Let's determine a programatic way of doing this.The text was updated successfully, but these errors were encountered: