feat: Add make admin button to debug menu

This commit is contained in:
Blade Barringer
2016-05-14 22:37:26 -05:00
parent bc58bd97bb
commit 50d7345832
3 changed files with 19 additions and 0 deletions

View File

@@ -124,5 +124,9 @@ function($scope, $rootScope, User, $http, Notification, ApiUrl, Social) {
'party.quest.progress.up': User.user.party.quest.progress.up + 1000
});
};
$scope.makeAdmin = function () {
User.makeAdmin();
};
}
}])