* 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
19 lines
360 B
JavaScript
19 lines
360 B
JavaScript
'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');
|
|
}); |