Skip to content

Commit

Permalink
Merge pull request #3767 from emberjs/bmac-patch-1
Browse files Browse the repository at this point in the history
[BUGFIX release] Do not export jsdoc information for store helper fun…
  • Loading branch information
wecc committed Sep 15, 2015
2 parents 0dc4565 + 3569e0e commit 14e9357
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/ember-data/lib/system/store/serializer-response.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Model from 'ember-data/system/model/model';

const get = Ember.get;

/**
/*
This is a helper method that validates a JSON API top-level document
The format of a document is described here:
Expand Down Expand Up @@ -61,7 +61,7 @@ export function validateDocumentStructure(doc) {
return errors;
}

/**
/*
This is a helper method that always returns a JSON-API Document.
@method normalizeResponseHelper
Expand All @@ -88,7 +88,7 @@ export function normalizeResponseHelper(serializer, store, modelClass, payload,
return normalizedResponse;
}

/**
/*
Convert the payload from `serializer.extract` to a JSON-API Document.
@method _normalizeSerializerPayload
Expand All @@ -111,7 +111,7 @@ export function _normalizeSerializerPayload(modelClass, payload) {
return { data };
}

/**
/*
Convert the payload representing a single record from `serializer.extract` to
a JSON-API Resource Object.
Expand Down Expand Up @@ -194,7 +194,7 @@ function normalizeRelationshipData(key, value, relationshipMeta) {
return { id: `${value}`, type: relationshipMeta.type };
}

/**
/*
This method converts a JSON-API Resource Object to a format that DS.Store
understands.
Expand Down

0 comments on commit 14e9357

Please sign in to comment.