@azteam/express 1.2.178 → 1.2.179

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azteam/express",
3
- "version": "1.2.178",
3
+ "version": "1.2.179",
4
4
  "main": "src/index.js",
5
5
  "engines": {
6
6
  "node": ">= 12.0.0",
@@ -196,7 +196,7 @@ class AdminController extends Controller {
196
196
  postImportSheet() {
197
197
  return {
198
198
  disabled: !this.roles.CREATE,
199
- path: '/',
199
+ path: '/import_sheet',
200
200
  method: [adminRoleMiddleware([this.roles.CREATE]), verifyGoogleAppMiddleware(), this.methodDPostImportSheet],
201
201
  };
202
202
  }
@@ -207,7 +207,7 @@ class AdminController extends Controller {
207
207
  postExportSheet() {
208
208
  return {
209
209
  disabled: !this.roles.READ,
210
- path: '/',
210
+ path: '/export_sheet',
211
211
  method: [adminRoleMiddleware([this.roles.READ]), verifyGoogleAppMiddleware(), this.methodPostExportSheet],
212
212
  };
213
213
  }