Merge branch 'master' into notification-fixes

This commit is contained in:
Wyatt Johnson
2018-05-08 10:38:26 -06:00
committed by GitHub
28 changed files with 232 additions and 284 deletions
@@ -3,7 +3,7 @@ const getOrganizationName = async ctx => {
const { loaders: { Settings } } = ctx;
// Get the settings.
const { organizationName = null } = await Settings.load('organizationName');
const { organizationName = null } = await Settings.select('organizationName');
return organizationName;
};