Conditions | 3 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import ApiService from '../api.service'; |
||
12 | fetchResolverStrategies() { |
||
13 | return this.httpClient.get( |
||
14 | 'app-system/app-url-change/strategies', |
||
15 | { |
||
16 | headers: this.getBasicHeaders() |
||
17 | } |
||
18 | ).then(({ data }) => { |
||
19 | return Object.entries(data).map(([key, description]) => { |
||
20 | return { name: key, description }; |
||
21 | }); |
||
22 | }); |
||
23 | } |
||
24 | |||
57 |