@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 +1 -1
- package/src/AdminController.js +2 -2
package/package.json
CHANGED
package/src/AdminController.js
CHANGED
|
@@ -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
|
}
|