(function () { 'use strict'; //controller that handles user settings stuff var controllerId = 'badgeSocialReportingController'; angular.module('app').controller(controllerId, ['common', '$filter', 'datacontext', '$location', 'config', '$scope', '$modal', 'OrganisationAdminService', 'features', badgeSocialReportingController]); function badgeSocialReportingController(common, $filter, datacontext, $location, config, $scope, $modal, OrganisationAdminService, features) { var getLogFn = common.logger.getLogFn; var log = getLogFn(controllerId); var vm = this; } })();