app.controller(
	"MyController",
	function( $scope, config ) {

		// ....
		$scope.shouldShowHotNewFeature = !! config.featureFlags[ "product-RAIN-007-hot-new-feature" ];
		// ....

	}
);