|
@@ -75,7 +75,7 @@ class DSK {
|
|
|
const url = this.url + 'api/compilation/external/list';
|
|
|
const postData = {};
|
|
|
const result = this.dealWith(await this.ctx.helper.sendRequest(url, postData, 'GET', 'json', true));
|
|
|
- return result.filter(item => { return item.type === 'highway' && validName.indexOf(item.name) >= 0; });
|
|
|
+ return result.filter(item => { return validName.indexOf(item.name) >= 0; });
|
|
|
}
|
|
|
|
|
|
async getProjectList(mobile, compilationId) {
|