Skip to content

Commit a05b0a5

Browse files
committed
Adding new line at the end of the file. -Git
1 parent 0ee37f9 commit a05b0a5

File tree

38 files changed

+42
-38
lines changed

38 files changed

+42
-38
lines changed

config.example.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@ settings.githubStrategy = {
102102
callbackURL: settings.server.url + 'account/signin/github/callback' //callback return linkedin
103103
};
104104

105-
module.exports = settings;
105+
module.exports = settings;

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,4 +210,4 @@ gulp.task('watch', ['default'], function () {
210210
gulp.watch("public/src/images/**/*", ['images']);
211211
gulp.watch("public/src/fonts/*", ['fonts']);
212212
gulp.watch("*.hbs", ['bs-reload']);
213-
});
213+
});

models/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ db.once("open", function () {
1818
console.log("connection established.");
1919
});
2020

21-
module.exports.mongoose = mongoose;
21+
module.exports.mongoose = mongoose;

models/users.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@ var Users = mongoose.model("usersaccount", UsersSchema);
8888
/**
8989
* Export model User
9090
*/
91-
module.exports.Users = Users;
91+
module.exports.Users = Users;

modules/auth.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,4 @@ function _cookie() {
8787
};
8888
}
8989

90-
module.exports.cookie = new _cookie();
90+
module.exports.cookie = new _cookie();

modules/mail.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ module.exports.smtp = nodemailer.createTransport({
1313
},
1414
logger: settings.mail.smtp.logger,
1515
debug: settings.mail.smtp.debug
16-
});
16+
});

modules/response.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ function response() {
6262
delete val.privateData;
6363
return val;
6464
}
65-
}
65+
}

passport/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ module.exports = function (passport) {
6060
* Strategy GitHub
6161
*/
6262
githubStrategy(passport);
63-
};
63+
};

passport/strategies/_findOrCreateOAuth.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ module.exports = function (req, token, refreshToken, profile, done) {
4848
});
4949
});
5050
});
51-
};
51+
};

passport/strategies/facebookStrategy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ module.exports = function (passport) {
2121
}
2222
)
2323
);
24-
};
24+
};

0 commit comments

Comments
 (0)