habitica-self-host/assets/js/controllers/groupsCtrl.js
2013-08-28 22:08:59 -04:00

14 lines
306 B
JavaScript

"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;
}
]);