mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-03 04:29:40 +00:00
14 lines
306 B
JavaScript
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;
|
|
}
|
|
]);
|