()
| 27 | } |
| 28 | |
| 29 | export function getSystemName() { |
| 30 | let system_name = localStorage.getItem('system_name'); |
| 31 | if (!system_name) return 'New API'; |
| 32 | return system_name; |
| 33 | } |
| 34 | |
| 35 | export function getLogo() { |
| 36 | let logo = localStorage.getItem('logo'); |
no outgoing calls
no test coverage detected