Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit b3f129ceb9feb2cb511a4c8e4b27917167d853c2
Author: Stefan Graupner <[email protected]>
Date:   Wed Aug 28 10:32:19 2024 +0200

    fix: Repair changed faker calls

commit 04e365b
Author: Florian Salis <[email protected]>
Date:   Tue Jun 4 10:44:04 2024 +0200

    fix: Revert wrong changes

commit 957b6bf
Author: Florian Salis <[email protected]>
Date:   Tue Jun 4 10:42:06 2024 +0200

    fix: Revert wrong changes

commit 8fb6b1b
Author: Florian Salis <[email protected]>
Date:   Tue Jun 4 10:37:26 2024 +0200

    chore: remove commented out code and console logs

commit 287e7e1
Author: Florian Salis <[email protected]>
Date:   Tue Jun 4 10:36:05 2024 +0200

    feat: Only use the Type-Name. No more upper-/lowercase transformation anywhere

commit 5a3c7ac
Author: Florian Salis <[email protected]>
Date:   Tue May 28 08:33:11 2024 +0200

    fix: Correct data structure

commit 0a8976d
Author: Florian Salis <[email protected]>
Date:   Tue May 28 08:32:53 2024 +0200

    fix: Use Type to access Store module in relationships

commit 9e521dd
Author: Florian Salis <[email protected]>
Date:   Thu May 23 08:42:11 2024 +0200

    chore: Linting

commit 9a4ae25
Author: Florian Salis <[email protected]>
Date:   Wed May 22 17:49:47 2024 +0200

    test: Add/Adjust Tests

commit 8551f5d
Author: Florian Salis <[email protected]>
Date:   Wed May 22 17:49:31 2024 +0200

    feat/fix: Disperse moduleName and Type for relationsships

commit 39b8271
Author: Florian Salis <[email protected]>
Date:   Tue May 21 21:20:27 2024 +0200

    feat: Allow Pascalcase Keys

commit 6fabbb1
Author: Florian Salis <[email protected]>
Date:   Tue May 21 13:59:36 2024 +0200

    feat/fix: Allow PascalCase Types
  • Loading branch information
eFrane committed Aug 28, 2024
1 parent 4b16e60 commit 8ec3006
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/module/resource/getRelationship.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* @param {Vuex.Store} store
* @param {Object} relatedObject
* @param {Object} config{isToMany: boolean}
* @param {Object} config{isToMany: boolean}
*/
export function getRelationship (store, relatedObject, config) {
return new Proxy(() => {}, {
Expand Down
4 changes: 2 additions & 2 deletions test/apiMock.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function initApiMockServer () {
type: 'book',
id,
attributes: {
author: faker.name.findName(),
author: faker.person.fullName(),
title: faker.lorem.words(3)
}
}
Expand All @@ -62,7 +62,7 @@ export function initApiMockServer () {
type: 'Category',
id,
attributes: {
author: faker.name.findName(),
author: faker.person.fullName(),
title: faker.lorem.words(3)
}
}
Expand Down

0 comments on commit 8ec3006

Please sign in to comment.