* BAEL-509: Initial Commit - working but needs a few fixes to REST API, etc.

* Fixed Authentication Failure - added subscription handlers - sufficient for Websocket Authentication/Authorization - still some issues to resolve with subscriptions and REST API

* Final version

* CSRF token controller - cleanup of chat wrapper
This commit is contained in:
Adam InTae Gerard
2017-07-04 03:57:27 +01:00
committed by KevinGilmore
parent 70ae331cd7
commit db2bb252de
47 changed files with 1654 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
'use strict';
angularApp
.config(function ($routeProvider) {
$routeProvider
.when('/index', {
controller: 'indexController'
})
.when('/login', {
controller: 'loginController'
})
.when('/sockets', {
controller: 'socketController'
})
.when('/success', {
controller: 'successController'
})
.otherwise('/index');
});