biz9-logic 4.8.333 → 4.8.335
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/biz9_config +1 -1
- package/index.js +14 -0
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -1811,6 +1811,17 @@ class Url_Logic {
|
|
|
1811
1811
|
static URL_CATEGORY_SEARCH="category/search";
|
|
1812
1812
|
//content
|
|
1813
1813
|
static URL_CONTENT_GET="item/get_content";
|
|
1814
|
+
//crud
|
|
1815
|
+
static URL_COPY="main/crud/copy";
|
|
1816
|
+
static URL_DELETE="main/crud/delete";
|
|
1817
|
+
static URL_DELETE_CHECK_PROTECTION="main/crud/delete_item_check_protection";
|
|
1818
|
+
static URL_DELETE_LIST="main/crud/delete_list";
|
|
1819
|
+
static URL_GET="main/crud/get";
|
|
1820
|
+
static URL_GET_PARENT_TOP="main/crud/get_parent_top";
|
|
1821
|
+
static URL_POST="main/crud/post";
|
|
1822
|
+
static URL_POST_CMS="main/crud/post_cms";
|
|
1823
|
+
static URL_POST_LIST="main/crud/post_list";
|
|
1824
|
+
static URL_SEARCH="main/crud/search";
|
|
1814
1825
|
//dashboard
|
|
1815
1826
|
static URL_DASHBOARD_USER_HOME="dashboard/user_home";
|
|
1816
1827
|
static URL_DASHBOARD_APP_HOME="dashboard/app_home";
|
|
@@ -1825,6 +1836,9 @@ class Url_Logic {
|
|
|
1825
1836
|
static URL_GALLERY_DETAIL="gallery/detail";
|
|
1826
1837
|
static URL_GALLERY_HOME="gallery/home";
|
|
1827
1838
|
static URL_GALLERY_SEARCH="gallery/search";
|
|
1839
|
+
//image
|
|
1840
|
+
static URL_IMAGE_POST="main/image/post";
|
|
1841
|
+
static URL_IMAGE_POST="main/image/post_cdn";
|
|
1828
1842
|
//order
|
|
1829
1843
|
static URL_ORDER_DELETE="item/delete_order";
|
|
1830
1844
|
static URL_ORDER_GET="item/get_order";
|