Set up scaffolding for new drawer

This commit is contained in:
Brandon Millman
2018-05-15 16:18:49 -07:00
parent bd7fc780cb
commit 317ff81744
3 changed files with 28 additions and 9 deletions

View File

@@ -314,4 +314,7 @@ export const utils = {
return _.includes(window.location.href, configs.DOMAIN_STAGING);
},
isDogfood,
shouldShowPortalV2(): boolean {
return this.isDevelopment() || this.isStaging() || this.isDogfood();
},
};