Skip to content

Commit

Permalink
Merge pull request #242 from reactioncommerce/refactor-localization-s…
Browse files Browse the repository at this point in the history
…ettings-form

Refactor localization settings form
  • Loading branch information
mikemurray authored Mar 13, 2020
2 parents f1a2704 + 7bca8a3 commit c7f5c95
Show file tree
Hide file tree
Showing 10 changed files with 304 additions and 407 deletions.
8 changes: 1 addition & 7 deletions imports/plugins/core/core/server/methods/shop/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import createTag from "./createTag";
import updateBrandAssets from "./updateBrandAssets";
import updateCurrencyConfiguration from "./updateCurrencyConfiguration";
import updateDefaultParcelSize from "./updateDefaultParcelSize";
import updateHeaderTags from "./updateHeaderTags";
import updateLanguageConfiguration from "./updateLanguageConfiguration";

/**
* @file Meteor methods for Shop
Expand All @@ -15,8 +12,5 @@ import updateLanguageConfiguration from "./updateLanguageConfiguration";
export default {
"shop/createTag": createTag,
"shop/updateBrandAssets": updateBrandAssets,
"shop/updateCurrencyConfiguration": updateCurrencyConfiguration,
"shop/updateDefaultParcelSize": updateDefaultParcelSize,
"shop/updateHeaderTags": updateHeaderTags,
"shop/updateLanguageConfiguration": updateLanguageConfiguration
"shop/updateHeaderTags": updateHeaderTags
};

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,34 @@ export default gql`
phone
isCommercial
}
baseUOL
baseUOM
currency {
code
}
defaultParcelSize {
width
weight
height
length
}
description
emails {
address
}
keywords
language
name
slug
timezone
unitsOfLength {
uol
label
}
unitsOfMeasure {
uom
label
}
}
`;

Expand Down
Loading

0 comments on commit c7f5c95

Please sign in to comment.