Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor localization settings form #242

Merged
merged 8 commits into from
Mar 13, 2020
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