Skip to content

Commit

Permalink
[DOCS] [BUGFIX] generateIdForRecord api doc #5803
Browse files Browse the repository at this point in the history
Fixes #5803
Missing type param in generateIdForRecord api doc
  • Loading branch information
rajasegar authored and runspired committed Mar 4, 2019
1 parent 1ebff8c commit 1dbe101
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/adapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ export default EmberObject.extend({
import { v4 } from 'uuid';
export default DS.Adapter.extend({
generateIdForRecord(store, inputProperties) {
generateIdForRecord(store, type, inputProperties) {
return v4();
}
});
Expand Down

0 comments on commit 1dbe101

Please sign in to comment.