Commit a7ce25bd authored by Tristan Cavelier's avatar Tristan Cavelier

fix indent in putAttachmentCommand.js

parent df49c0f1
/*jslint indent: 2, maxlen: 80, sloppy: true */ /*jslint indent: 2, maxlen: 80, sloppy: true */
/*global command: true */ /*global command: true */
var putAttachmentCommand = function (spec, my) { var putAttachmentCommand = function (spec, my) {
var that = command(spec, my); var that = command(spec, my);
spec = spec || {}; spec = spec || {};
my = my || {}; my = my || {};
// Attributes // // Attributes //
// Methods // // Methods //
that.getLabel = function () { that.getLabel = function () {
return 'putAttachment'; return 'putAttachment';
}; };
that.executeOn = function (storage) { that.executeOn = function (storage) {
storage.putAttachment(that); storage.putAttachment(that);
}; };
that.validateState = function () { that.validateState = function () {
if (!(typeof that.getDocId() === "string" && that.getDocId() !== if (!(typeof that.getDocId() === "string" && that.getDocId() !==
"")) { "")) {
that.error({ that.error({
"status": 20, "status": 20,
"statusText": "Document Id Required", "statusText": "Document Id Required",
"error": "document_id_required", "error": "document_id_required",
"message": "The document id is not provided", "message": "The document id is not provided",
"reason": "Document id is undefined" "reason": "Document id is undefined"
}); });
return false; return false;
} }
if (typeof that.getAttachmentId() !== "string") { if (typeof that.getAttachmentId() !== "string") {
that.error({ that.error({
"status": 22, "status": 22,
"statusText": "Attachment Id Required", "statusText": "Attachment Id Required",
"error": "attachment_id_required", "error": "attachment_id_required",
"message": "The attachment id must be set", "message": "The attachment id must be set",
"reason": "Attachment id not set" "reason": "Attachment id not set"
}); });
return false; return false;
} }
if (that.getAttachmentId() === "") { if (that.getAttachmentId() === "") {
that.error({ that.error({
"status": 23, "status": 23,
"statusText": "Invalid Attachment Id", "statusText": "Invalid Attachment Id",
"error": "invalid_attachment_id", "error": "invalid_attachment_id",
"message": "The attachment id must not be an empty string", "message": "The attachment id must not be an empty string",
"reason": "Attachment id is empty" "reason": "Attachment id is empty"
}); });
} }
return true; return true;
}; };
return that; return that;
}; };
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment