
- Created StringUtil class with some useful random string methods. - Create UrlUtil class with useful URL manipulation and builder methods. - Cleaned up some unused libraries (cookies, mocks) from index.html - Added LocalStorage dependency. - Added advanced routing to auth module for OAuth response routing. - Added state resolver methods so we can enforce UI states that require certain session states. - Removed AuthProvider resolver and resource, as they're no longer necessary. - Updated header to point to correct routes. - Updated header to correctly represent state. - Added busy template for "pending" activity. This shouldn't actually show up because the javascript will resolve the view logic too quickly, but it's included for the sake of completion. - Added error state in case we get an error response from the server. It's very basic. - Added request interceptor that attaches an access token to every request if a valid access token exists. - Added OpenId service to handle our redirection and token resolution. - Added Deauthorization (logout) controller. - Added session management controller. - Added search param provider to inject non-hashbang query parameters. Change-Id: Id9b1e7fe9ed98ad4be0a80f1acd4a9e125ec57c9
20 lines
523 B
JSON
20 lines
523 B
JSON
{
|
|
"name": "storyboard-webclient",
|
|
"version": "0.0.1",
|
|
"dependencies": {
|
|
"jquery": "2.0.3",
|
|
"font-awesome": "4.0",
|
|
"angular": "1.2.13",
|
|
"angular-resource": "1.2.13",
|
|
"angular-sanitize": "1.2.13",
|
|
"bootstrap": "3.1.0",
|
|
"angular-ui-router": "0.2.8-bowratic-tedium",
|
|
"angular-bootstrap": "0.10.0",
|
|
"angular-local-storage": "0.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"angular-mocks": "1.2.13",
|
|
"angular-scenario": "1.2.13"
|
|
}
|
|
}
|