habitica/assets/js/controllers/groupsCtrl.js

15 lines
306 B
JavaScript
Raw Normal View History

"use strict";
/*
The authentication controller (login & facebook)
*/
habitrpg.controller("GroupsCtrl", ['$scope', '$rootScope', 'Groups', '$http', '$location',
function($scope, $rootScope, Groups) {
$scope.groups = Groups.query(function(){
debugger
});
$scope.party = true;
}
]);