angular-sailsjs-boilerplate
angular-sailsjs-boilerplate copied to clipboard
'Boilerplate' for AngularJS + Sails.js
I configure my frontend and Backend to work by HTTPS and when I try connect to my frontend the next error appear: ``` vendors.min.js:24 GET https://myPublicIPBackendServer/socket.io/?__sails_io_sdk_version=0.11.0&__sails_io_sd…sails_io_sdk_language=javascript&EIO=3&transport=polling&t=1473033035432-6 net::ERR_INSECURE_RESPONSE ```
By checking the log from DataModel after deleting an object, the console prints ``` 'Implement handling for 'destroyed' socket messages' ``` I renamed that handler on line 164 for 'handlerDestroyed'...
I've been using your angular-sails-boilerplate. For frontend development, gulp serve works fine. I'm trying to prepare frontend for production (gulp dist) but get the following error: "TypeError: bowerStream.pipe is not...
I can see that facebook integration is a todo item, so i decided to give you a hand and start building on a Facebook authentication. So The separation between front...
I'm trying to enable profile.html from the user link but I don't understand well the logic of UI router for that. 1. In the root's frontend I created a folder...
So, i started to do a little digging while trying to get a grip about Facebook integration and found out that one main issue is that the boilerplate does not...
in the browser console: ``` LoginHistoryModel.statistics() failed. Object {data: Object, status: 500, config: Object, statusText: undefined} userlogin Browser LoginHistoryModel.statistics() failed. Object {data: Object, status: 500, config: Object, statusText: undefined} userlogin...
I'm just wondering if there is a convenient location to add the user object into the request. For example, the in `isAdmin` policy (see https://github.com/tarlepp/angular-sailsjs-boilerplate/blob/master/backend/api/policies/isAdmin.js#L16) you are finding the user....
Hey, I really like your project! I had to change the frontend/package.json from ``` "postinstall": "./node_modules/bower/bin/bower install" ``` to ``` "postinstall": "bower install" ``` to get it to install without...
I have written updatePassword in AuthService.js: updatePassword: function updatePassword(credentials) { ``` return $http .post(BackendConfig.url + '/updatePassword', credentials, {withCredentials: false}) .then( function(response) { //var msg = response.data.message MessageService.success('Your Password Changed Successfully!');...