Skip to content

Commit

Permalink
Merge branch 'hotfix/fix-imagemin-dependency'
Browse files Browse the repository at this point in the history
  • Loading branch information
emersonf committed Dec 3, 2015
2 parents 85aaebc + 8d8804f commit 76417d9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
7 changes: 0 additions & 7 deletions docker.sh

This file was deleted.

4 changes: 2 additions & 2 deletions shim-server-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "shim-server-ui",
"version": "0.2.1",
"version": "0.4.1",
"dependencies": {},
"devDependencies": {
"grunt": "~0.4.5",
Expand All @@ -13,7 +13,7 @@
"grunt-contrib-copy": "~0.8.0",
"grunt-contrib-cssmin": "~0.12.3",
"grunt-contrib-htmlmin": "~0.4.0",
"grunt-contrib-imagemin": "~0.9.4",
"grunt-contrib-imagemin": "~1.0.0",
"grunt-contrib-jshint": "~0.11.2",
"grunt-contrib-uglify": "~0.9.1",
"grunt-contrib-watch": "~0.6.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ public class Application extends WebSecurityConfigurerAdapter {
@Autowired
private ShimRegistry shimRegistry;

@Autowired
private ShimServerConfig shimServerProperties;

// TODO clarify what this is for
private static final String REDIRECT_OOB = "oob";

Expand Down Expand Up @@ -276,7 +279,7 @@ public AuthorizationResponse approve(
}

try{
servletResponse.sendRedirect(authorizationStatusURL);
servletResponse.sendRedirect(shimServerProperties.getCallbackUrlBase() + authorizationStatusURL);
}
catch (IOException e) {
e.printStackTrace();
Expand Down

0 comments on commit 76417d9

Please sign in to comment.