mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-26 13:22:38 +00:00
15 lines
306 B
JavaScript
15 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;
|
||
|
|
}
|
||
|
|
]);
|