925bfdb08c63c482dd78f483fb6424ad4ad9441b
[groupbasedpolicy.git] / groupbasedpolicy-ui / module / src / main / resources / gbp / policy / policy.controller.js
1 define([], function () {
2     'use strict';
3
4     angular.module('app.gbp').controller('PolicyController', PolicyController);
5
6     PolicyController.$inject = ['$scope'];
7
8     /* @ngInject */
9     function PolicyController($scope) {
10         console.log('PolicyController initialized');
11     }
12
13 });
14