Files
spring-boot-rest/spring-security-mvc-socket/src/main/webapp/resources/scripts/routes/router.js
Adam InTae Gerard db2bb252de BAEL-509 (#2114)
* 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
2017-07-03 21:57:27 -05:00

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');
});