|
@@ -55,22 +55,22 @@ export default {
|
55
|
55
|
},
|
56
|
56
|
buildingGetById: {
|
57
|
57
|
method: 'GET',
|
58
|
|
- url: `${prefix}/buildingSelectId/id`,
|
|
58
|
+ url: `${prefix}/buildingSelectId/:id`,
|
59
|
59
|
action: 'admin.buildingSelectId.id.get',
|
60
|
60
|
},
|
61
|
61
|
deleteBuilding: {
|
62
|
62
|
method: 'DELETE',
|
63
|
|
- url: `${prefix}/building/delete/id`,
|
|
63
|
+ url: `${prefix}/building/delete/:id`,
|
64
|
64
|
action: 'admin.building.delete.id.delete',
|
65
|
65
|
},
|
66
|
66
|
buildingApartment: {
|
67
|
67
|
method: 'GET',
|
68
|
|
- url: `${prefix}/buildingApartment/buildingId/id`,
|
|
68
|
+ url: `${prefix}/buildingApartment/buildingId/:id`,
|
69
|
69
|
action: 'admin.buildingApartment.buildingId.id.get',
|
70
|
70
|
},
|
71
|
71
|
buildingApartmentGetById: {
|
72
|
72
|
method: 'GET',
|
73
|
|
- url: `${prefix}/buildingApartment/id`,
|
|
73
|
+ url: `${prefix}/buildingApartment/:id`,
|
74
|
74
|
action: 'admin.buildingApartment.id.get',
|
75
|
75
|
},
|
76
|
76
|
buildingApartmentUpdate: {
|
|
@@ -85,7 +85,7 @@ export default {
|
85
|
85
|
},
|
86
|
86
|
buildingApartmentDelete: {
|
87
|
87
|
method: 'DELETE',
|
88
|
|
- url: `${prefix}/apartment/deleted/id`,
|
|
88
|
+ url: `${prefix}/apartment/deleted/:id`,
|
89
|
89
|
action: 'admin.apartment.deleted.id.delete',
|
90
|
90
|
},
|
91
|
91
|
buildingSelect: {
|
|
@@ -102,12 +102,12 @@ export default {
|
102
|
102
|
},
|
103
|
103
|
delete: {
|
104
|
104
|
method: 'DELETE',
|
105
|
|
- url: `${prefix}/tdBuildingType/id`,
|
|
105
|
+ url: `${prefix}/tdBuildingType/:id`,
|
106
|
106
|
action: 'admin.tdBuildingType.id.delete',
|
107
|
107
|
},
|
108
|
108
|
update: {
|
109
|
109
|
method: 'PUT',
|
110
|
|
- url: `${prefix}/tdBuildingType/id`,
|
|
110
|
+ url: `${prefix}/tdBuildingType/:id`,
|
111
|
111
|
action: 'admin.tdBuildingType.id.put',
|
112
|
112
|
},
|
113
|
113
|
add: {
|
|
@@ -117,7 +117,7 @@ export default {
|
117
|
117
|
},
|
118
|
118
|
getById: {
|
119
|
119
|
method: 'GET',
|
120
|
|
- url: `${prefix}/tdBuildingType/id`,
|
|
120
|
+ url: `${prefix}/tdBuildingType/:id`,
|
121
|
121
|
action: 'admin.tdBuildingType.id.get',
|
122
|
122
|
},
|
123
|
123
|
},
|