Merge tag '3.4.2' into develop

3.4.2
This commit is contained in:
Fergal Moran
2016-02-08 20:33:31 +00:00
20 changed files with 18 additions and 8 deletions

5
.dockerignore Normal file
View File

@@ -0,0 +1,5 @@
.git/
node_modules/
client/
.tmp/
npm-debug.log

View File

@@ -1 +1,8 @@
FROM digitallyseamless/nodejs-bower-grunt-runtime
FROM fergalmoran/node
ENV NODE_ENV production
WORKDIR /app/dist/
ADD dist /app/dist/
ENV NODE_ENV production
CMD ["npm", "start"]

View File

@@ -50,12 +50,13 @@ angular.module('dssWebApp', [
popupOptions: {width: 580, height: 400}
});
$authProvider.twitter({
url: '_a/?backend=twitter'
url: '_a/?backend=twitter',
redirectUri: window.location.origin + '/',
});
$authProvider.google({
clientId: '248170132962-5km115budk9h84raa26hdmnnqdj8ivkl.apps.googleusercontent.com',
clientId: '248170132962-gljba6svm1l8q73acmfc3ihkgp4orbnr.apps.googleusercontent.com',
redirectUri: window.location.origin + '/',
url: '/_a/?backend=google',
url: '/_a/?backend=google'
});
ngClipProvider.setPath("bower_components/zeroclipboard/dist/ZeroClipboard.swf");

View File

@@ -76,8 +76,6 @@ angular.module('dssWebApp')
}
function logoutUser() {
return $q.resolve();
/*
var defer = $q.defer();
$auth.logout()
.then(function(){
@@ -85,6 +83,5 @@ angular.module('dssWebApp')
});
return defer.promise;
*/
}
});

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 101 KiB

View File

@@ -8,6 +8,6 @@ module.exports = {
seedDB: true,
redisHost: 'localhost',
apiUrl: 'http://ext-test.deepsouthsounds.com:8001',
apiUrl: 'https://ext-test.deepsouthsounds.com:8001',
radioUrl: 'http://localhost:8000'
};