denniss17/pimatic-angular-material-frontend

View on GitHub
app/controllers/settings/groups/index.js

Summary

Maintainability
A
0 mins
Test Coverage
angular.module('pimaticApp.settings').controller('GroupsController', [
    '$scope',
    '$location',
    'store',
    function ($scope, $location, store) {
        $scope.edit = function (id) {
            $location.path('settings/groups/' + id);
        };

        $scope.getGroups = function () {
            return store.get('groups');
        };
    }
]);