Skip to content

Commit

Permalink
Update docs and files to distribute
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis committed Jul 7, 2015
1 parent 406a63e commit 62eb1f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions familysearch-javascript-sdk.js
Original file line number Diff line number Diff line change
Expand Up @@ -8956,7 +8956,7 @@ FS.prototype.restoreChildAndParents = function(caprid, opts) {
return self.helpers.chainHttpPromises(
self.plumbing.getUrl('child-and-parents-relationship-restore-template', caprid, {caprid: caprid}),
function(url) {
return self.plumbing.post(url, null, {}, opts, function() {
return self.plumbing.post(url, null, {'Content-Type': 'application/x-fs-v1+json'}, opts, function() {
return caprid;
});
}
Expand Down Expand Up @@ -9527,7 +9527,7 @@ FS.prototype.restorePerson = function(pid, opts) {
return self.helpers.chainHttpPromises(
self.plumbing.getUrl('person-restore-template', pid, {pid: pid}),
function(url) {
return self.plumbing.post(url, null, {}, opts, function() {
return self.plumbing.post(url, null, {'Content-Type': 'application/x-fs-v1+json'}, opts, function() {
return pid;
});
}
Expand Down Expand Up @@ -11250,7 +11250,7 @@ FS.prototype.restoreCouple = function(crid, opts) {
return self.helpers.chainHttpPromises(
self.plumbing.getUrl('couple-relationship-restore-template', crid, {crid: crid}),
function(url) {
return self.plumbing.post(url, null, {}, opts, function() {
return self.plumbing.post(url, null, {'Content-Type': 'application/x-fs-v1+json'}, opts, function() {
return crid;
});
}
Expand Down
Loading

0 comments on commit 62eb1f6

Please sign in to comment.