Skip to content

Commit

Permalink
Merge branch 'art_prod_early_arrival_implementation' of github.com:Mi…
Browse files Browse the repository at this point in the history
…dburn/Spark into art_prod_early_arrival_implementation
  • Loading branch information
LeonFedotov committed May 19, 2017
2 parents 641ba6b + 78f086c commit a87a5f9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions bin/import_camps_data.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ function main(argv) {
first_name = (full_name.length > 0) ? full_name[0] : '';
last_name = (full_name.length > 1) ? full_name.slice(1, full_name.length).join(" ") : '';
}
// let _user = {
// validated: false,
// email: email,
// created_at: (new Date()).toISOString().substring(0, 19).replace('T', ' '),
// updated_at: (new Date()).toISOString().substring(0, 19).replace('T', ' '),
// };
let _user_rec = {
validated: false,
email: email,
created_at: (new Date()).toISOString().substring(0, 19).replace('T', ' '),
updated_at: (new Date()).toISOString().substring(0, 19).replace('T', ' '),
};
var _user_rec_add_field = function (key, value, default_value) {
if (value) {
_user_rec[key] = value;
Expand Down

0 comments on commit a87a5f9

Please sign in to comment.