13 lines
274 B
JavaScript
13 lines
274 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();
|
|
$scope.party = true;
|
|
}
|
|
]);
|